Results 1 to 3 of 3
Thread: Print A Pdf
- 06-14-2007, 04:25 PM #1
Senior Member
- Join Date
- Jun 2007
- Posts
- 130
- Rep Power
- 0
Print A Pdf
I'm trying to print pfd from java application
this is the code:
but it doesn't work, can you help me?Java Code:DocFlavor flavor = DocFlavor.INPUT_STREAM.PDF; PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet(); aset.add(MediaSizeName.ISO_A4); aset.add(new Copies(1)); PrintService service = PrintServiceLookup.lookupDefaultPrintService(); DocPrintJob printJob = service.createPrintJob(); Doc doc = new SimpleDoc(filePDF,flavor,null) try { printJob.print(doc, aset); } catch (PrintException e) { e.printStackTrace(); }
- 07-02-2007, 05:38 AM #2
Senior Member
- Join Date
- Jun 2007
- Posts
- 119
- Rep Power
- 0
I think that the api of sun isn't possible to print a pdf document directly.
(only txt)
If you have the openoffice installed, you can invoke to the print order directly from runtime
- 07-02-2007, 05:40 AM #3
Senior Member
- Join Date
- Jun 2007
- Posts
- 110
- Rep Power
- 0
Hi jack, try this:
Java Code:import java.awt.print.*; import java.util.*; import javax.print.*; import javax.print.attribute.*; DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE; PrintService service = PrintServiceLookup.lookupDefaultPrintService(); if (service != null) { try { DocPrintJob job = service.createPrintJob(); DocAttributeSet das = new HashDocAttributeSet(); FileInputStream fis = new FileInputStream(destFileNamePdf); Doc doc = new SimpleDoc(fis,flavor,das); try { job.print(doc,null);
Similar Threads
-
print line
By kazitula in forum Java AppletsReplies: 2Last Post: 01-26-2008, 02:05 PM -
Print Area
By Riftwalker in forum Advanced JavaReplies: 0Last Post: 11-28-2007, 07:28 PM -
Print XML tag
By DonCash in forum XMLReplies: 2Last Post: 08-07-2007, 06:02 PM -
doubt about PRINT API
By valery in forum New To JavaReplies: 1Last Post: 08-06-2007, 09:51 PM -
print .doc in java
By Alan in forum Advanced JavaReplies: 1Last Post: 05-17-2007, 04:05 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks