Auf Thema antworten

Hallo,


ich drucke von meiner Applikation und starte den Druckvorgang so:



[code]    try {

                    // Standard Drucker

                    PrintService defaultPrintService = PrintServiceLookup

                            .lookupDefaultPrintService();


                    // Create the print job

                    FileInputStream myPicture = new FileInputStream("myfile.jpg");

                    DocFlavor formatSTREAM = DocFlavor.INPUT_STREAM.JPEG;

                    DocPrintJob printJob = defaultPrintService.createPrintJob();

                    Doc doc = new SimpleDoc(myPicture, formatSTREAM, null);

                  

                    // Drucken

                    printJob.print(doc, null);


                } catch (PrintException e) {

                    throw new PrintException();

                } catch (IOException e) {

                    throw new PrintException();

                }  [/code]



Nun steht beim Druck / Druckvorgang immer "Java Printing", wie kann ich das umbennen in den Filename (myfile.jpg)???


Danke.



Oben