IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Documents Java Discussion :

impression fiche excel


Sujet :

Documents Java

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    27
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2006
    Messages : 27
    Points : 20
    Points
    20
    Par défaut impression fiche excel
    Salut à tous...


    voila je travaille sur un projet, et j'essaie d'imprimer des feuilles excel...

    j'ai recupere des tas de code... je les ai essayer ... mais malheureusement cela ne marche pas...

    j'ai fait des recherches et visiblement y a pas mal de problèmes... avec ca...


    donc j'ai quand meme un code sur le quel je me suis particulièrement penché...

    quand je le lance... le fichier se met à la queue de l'imprimante... et l'impression est lancé (enfin la voix de mon imprimante, lexmark, me dit impression lancée... ) et je vois la barre passé à 100%... et rien... rien ne se passe au niveau de mon imprimante...


    donc que faire avant de passé a JDIC... que je trouve vraiment pas pratique au niveau des choix... bah oui on peut pas choisir son imprimante par défaut...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    try {   
            	//Marges à appliquer 
            	int margeGauche = 7; 
            	int margeDroite = 7; 
            	int margeHaut = 7; 
            	int margeBas = 7;   
            	// Type de fichier en entrée 
            	DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE; 
            	//Liste des imprimantes disponibles 
            	PrintService[] services = PrintServiceLookup.lookupPrintServices(flavor, null); 
            	// Propriétés de l'impression 
            	PrintRequestAttributeSet printAttributes = new HashPrintRequestAttributeSet(); 
            	printAttributes.add(OrientationRequested.PORTRAIT); 
            	printAttributes.add(Chromaticity.MONOCHROME); 
            	printAttributes.add(PresentationDirection.TOBOTTOM_TOLEFT); 
            	printAttributes.add(new MediaPrintableArea(margeGauche, margeHaut, 210 - margeDroite - margeGauche, 297 - margeBas - margeHaut, MediaPrintableArea.MM));  
            	//Interface de communication
            	PrintService service = ServiceUI.printDialog(null, 100, 100, services, null, null, printAttributes);
            	// Annulation par l'utilisateur
     
     
            	// Ouvrir le fichier
            	InputStream is = new BufferedInputStream(new FileInputStream("C:/test.txt"));
            	// generation du job d'impression 
            	DocPrintJob job = service.createPrintJob(); 
            	SimpleDoc doc = new SimpleDoc(is, flavor, null);   
            	//Lancement de l'impression
            	job.print(doc, printAttributes);
            	is.close(); 
            	} catch (PrintException e) 
            	{ 
            		System.out.println(e.toString()); 
            	} 
            	catch (IOException e) 
            	{ System.out.println(e.toString()); 
            	}


    merci d'avance... si vous pouviez m'aider à résoudre mon problème je vous en serais tres reconnaissant merci..

  2. #2
    Membre éclairé Avatar de LeXo
    Profil pro
    Inscrit en
    Janvier 2004
    Messages
    1 147
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Janvier 2004
    Messages : 1 147
    Points : 868
    Points
    868
    Par défaut
    alors je te mets la classe que jutilise

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    import java.awt.Color;
     import java.awt.Dimension;
     import java.awt.Font;
     import java.awt.Graphics;
     import java.awt.Graphics2D;
     import java.awt.GridBagLayout;
     import java.awt.RenderingHints;
     import java.awt.print.PageFormat;
     import java.awt.print.Paper;
     import java.awt.print.Printable;
     import java.awt.print.PrinterException;
     import java.awt.print.PrinterJob;
     import java.util.Vector;
     
     import javax.swing.*;
     
     /**
     * @author mep
     *
     */
     public class Printer implements Printable
     {
     
     private JTextPane panel;
     private boolean showPrintZone;
     private boolean fitIntoPage;
     private boolean wrapComponent;
     private PageFormat pageFormat;
     private PrinterJob printJob;
     private Vector taillePages;
     private String documentTitle;
     public static final int PORTRAIT = 1;
     public static final int LANDSCAPE = 0;
     
     
     
     public Printer(JTextPane panel)
     {
     documentTitle = "";
     this.panel = panel;
     initPrintablePanel();
     }
     
     public void initPrintablePanel()
     {
     showPrintZone = false;
     fitIntoPage = false;
     wrapComponent = false;
    printJob = PrinterJob.getPrinterJob();
     pageFormat = printJob.defaultPage();
     pageFormat.setOrientation(1);
     }
     
     public void setOrientation(int orientation)
    {
     pageFormat.setOrientation(orientation);
     }
     
     public void setPrintZoneVisible(boolean status)
     {
     showPrintZone = status;
     }
     
     public void setWrapComponent(boolean status)
     {
     wrapComponent = status;
     }
     
     public void setFitIntoPage(boolean status)
     {
     fitIntoPage = status;
     }
     
     public int getPageWidth()
     {
     return (int)pageFormat.getImageableWidth();
     }
     
     public double getMarginTop ()
     {
     return pageFormat.getImageableY();
     }
     
     public double getMarginLeft ()
     {
     return pageFormat.getImageableX();
     }
     
     public void setLRMargins(int margin)
     {
     Paper paper = pageFormat.getPaper();
     paper.setImageableArea(paper.getImageableX() - (double)(margin / 2), paper.getImageableY(), paper.getImageableWidth() + (double)(margin / 2), paper.getImageableHeight());
     pageFormat.setPaper(paper);
     }
     
     public void setTBMargins(int margin)
     {
     Paper paper = pageFormat.getPaper();
     paper.setImageableArea(paper.getImageableX(), paper.getImageableY() - (double)(margin / 2), paper.getImageableWidth(), paper.getImageableHeight() + (double)(margin / 2));
     pageFormat.setPaper(paper);
     }
     
     public void setDocumentTitle(String title)
     {
     documentTitle = title;
     }
     public int print(Graphics g, PageFormat pf, int pageIndex)
     throws PrinterException
     {
     Dimension tailleDoc = panel.getSize();
     double hauteurDocu = tailleDoc.getHeight();
     double hauteurPage = pf.getImageableHeight();
     double largeurDocu = tailleDoc.getWidth();
     double largeurPage = pf.getImageableWidth();
     int totalNumPages = (int)Math.ceil(hauteurDocu / hauteurPage);
     if(wrapComponent)
     totalNumPages = taillePages.size();
     else
     if(fitIntoPage)
     totalNumPages = 1;
     double scaleX = largeurPage / largeurDocu;
    double scaleY = hauteurPage / hauteurDocu;
     if(pageIndex >= totalNumPages)
     return 1;
     Graphics2D g2d = (Graphics2D)g;
     g2d.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC);
     g2d.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
     g2d.translate(pf.getImageableX(), pf.getImageableY());
     if(fitIntoPage)
     {
     double ratio = Math.min(scaleX, scaleY);
     g2d.scale(ratio, ratio);
     } else
     if(wrapComponent)
     {
     if(pageIndex > 0)
     g2d.translate(0.0D, -((Double)taillePages.get(pageIndex - 1)).doubleValue());
    } else
    {
     g2d.translate(0.0D, (double)(-pageIndex) * hauteurPage);
     }
     panel.paint(g2d);
     if(wrapComponent)
     {
     double hauteurBlanc = ((Double)taillePages.get(pageIndex)).doubleValue();
     g2d.setColor(Color.WHITE);
     g2d.fillRect(0, (int)hauteurBlanc, (int)largeurPage, (int)hauteurBlanc + (int)hauteurPage);
     }
    if(wrapComponent)
    {
     if(pageIndex > 0)
     g2d.translate(0.0D, ((Double)taillePages.get(pageIndex - 1)).doubleValue());
    } else
     {
     g2d.translate(0.0D, (double)pageIndex * hauteurPage);
     }
     g2d.setColor(Color.BLACK);
     g2d.setFont(new Font("Courrier", 2, 9));
     g2d.drawString(documentTitle + " - [" + (pageIndex + 1) + "/" + totalNumPages + "]", 0, (int)pf.getImageableHeight() - 20);
     return 0;
     }
     
     public void print()
     {
    printJob.setPrintable(this, pageFormat);
     try
     {
     if(printJob.printDialog())
     {
     if(wrapComponent)
     calculatePages();
     Paper paper = pageFormat.getPaper();
     Paper save = pageFormat.getPaper();
     paper.setImageableArea(paper.getImageableX(), paper.getImageableY(), paper.getWidth() - paper.getImageableX(), paper.getHeight() - paper.getImageableY());
     pageFormat.setPaper(paper);
     printJob.setPrintable(this, pageFormat);
    printJob.print();
     pageFormat.setPaper(save);
     }
     }
     catch(PrinterException pe)
     {
     System.out.println("Erreur lors de l'impression du document: " + toString());
     }
     }
     
     private void calculatePages() {
     taillePages = new Vector();
     double hauteurPage = pageFormat.getImageableHeight();
     double hauteurTotal = 0.0D;
     double hauteurCumul = 0.0D;
     for(int i = 0; i < panel.getComponentCount(); i++) {
        int gridBagInsets = 0;
        if(panel.getLayout() instanceof GridBagLayout)
            gridBagInsets = ((GridBagLayout)panel.getLayout()).getConstraints(panel.getComponent(i)).insets.bottom + ((GridBagLayout)panel.getLayout()).getConstraints(panel.getComponent(i)).insets.top;
            double hauteurComponent = panel.getComponent(i).getSize().getHeight() + (double)gridBagInsets;
        if(hauteurComponent > hauteurPage) {
            wrapComponent = false;
         return;
        }
        hauteurTotal += hauteurComponent;
        if(hauteurTotal > hauteurPage) {
            hauteurTotal -= hauteurComponent;
            hauteurCumul += hauteurTotal;
            taillePages.add(new Double(hauteurCumul));
            hauteurTotal = hauteurComponent;
        }
     }
     
     hauteurCumul += hauteurTotal;
     taillePages.add(new Double(hauteurCumul));
     }
     
     
     }
    comment je l'instancie ?? voila :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    PrinterJob tache = PrinterJob.getPrinterJob();
        tache.setPrintable(new Printer(txtEdit));
    //printDialog affiche la fenetre de sélection de l’imprimante, etc...
    //il retourne true si on clique sur "Ok", false si on clique sur "Annuler"
        if(! tache.printDialog()) return;
        try {
            tache.print();
        } catch(Exception e) {
        System.out.println("impossible d’imprimer");
        }
    }
    Plzzz pas de questions par MP.

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    27
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2006
    Messages : 27
    Points : 20
    Points
    20
    Par défaut
    tout d'abord merci pour ta réponse...


    ensuite cette classe je ne peux pas lui passer un fichier à imprimer ? je ne peux lui passer qu'un component ??

    désolé si je dis une bétise...

  4. #4
    Membre éclairé Avatar de LeXo
    Profil pro
    Inscrit en
    Janvier 2004
    Messages
    1 147
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Janvier 2004
    Messages : 1 147
    Points : 868
    Points
    868
    Par défaut
    si tu vois mon txtEdit c un JTextArea



    Allez bon courage
    Plzzz pas de questions par MP.

Discussions similaires

  1. Macro : Impression dans Excel
    Par pamglobe dans le forum Macros et VBA Excel
    Réponses: 12
    Dernier message: 10/09/2007, 15h33
  2. Impression Fiche Joueur
    Par karibou47 dans le forum Access
    Réponses: 1
    Dernier message: 10/09/2006, 23h20
  3. [VB6] Ajustement avant impression feuille excel
    Par Julio_del_pueblo dans le forum VB 6 et antérieur
    Réponses: 3
    Dernier message: 15/06/2006, 14h35
  4. Réponses: 1
    Dernier message: 21/03/2006, 09h53
  5. définir une zone d'impression sous Excel
    Par mirumoto dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 25/11/2005, 12h26

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo