Results 1 to 3 of 3
Thread: printin word file
- 07-09-2009, 07:27 PM #1
Member
- Join Date
- Feb 2009
- Posts
- 18
- Rep Power
- 0
printin word file
i have class which prints file. But i have refilled cartridge which sends out empty cartridge error when i manually print so i can press ok and continue. Here while printing through this class it aborts printing and gives message printing failed. how can i ignore cartridge empty error?
import javax.print.*;
import javax.print.attribute.*;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.UIManager;
import java.io.*;
public class Printing {
public void print(String filename) throws Exception
{
HashPrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE; // MY FILE IS .txt TYPE
PrintService printService[] =
PrintServiceLookup.lookupPrintServices(flavor, pras);
PrintService defaultService =
PrintServiceLookup.lookupDefaultPrintService();
PrintService service = ServiceUI.printDialog(null, 200, 200,
printService, defaultService, flavor, pras);
if (service != null) {
DocPrintJob job = service.createPrintJob();
FileInputStream fis = new FileInputStream(filename);
try {
// ServiceUI.setLookAndFeel("com.sun.java.swing.plaf. windows.WindowsLookAndFeel");
} catch (Exception e) {
JFrame frame=new JFrame();
JOptionPane.showMessageDialog(frame,e.getMessage() , "ERROR",JOptionPane.ERROR_MESSAGE);
System.exit(0);
}
DocAttributeSet das = new HashDocAttributeSet();
Doc doc = new SimpleDoc(fis, flavor, das);
job.print(doc, pras);
Thread.sleep(10000);
}
//System.exit(0);
}
}
- 07-11-2009, 09:13 PM #2
i could not understand what you are trying to say
Mak
(Living @ Virtual World)
- 07-12-2009, 03:26 PM #3
Member
- Join Date
- Feb 2009
- Posts
- 18
- Rep Power
- 0
Similar Threads
-
How can i save file with greek word?
By mailbankey in forum EclipseReplies: 0Last Post: 04-15-2009, 01:16 PM -
Count lines cointaining "word" in input file
By gwithey in forum New To JavaReplies: 5Last Post: 04-02-2009, 05:23 AM -
Display MS-Word file in browser
By jazz2k8 in forum Advanced JavaReplies: 6Last Post: 12-08-2008, 12:59 PM -
Search a word(taken from one file) in another file and give the line as the output
By SwapnaNaidu in forum New To JavaReplies: 7Last Post: 11-19-2008, 02:09 PM -
copying file from a email/word to a Java application
By cmbl in forum Advanced JavaReplies: 13Last Post: 01-09-2008, 06:51 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks