|
Last time I had a similar requirement to be done in a web application.
But I couldn't find on how to detect the connection or I/O problem from the printer. But I think the code was able to detect some of the events that you’ve mentioned.
I used javax.print.DocPrintJob and implement its listener to return a flag whenever the corresponding event occurs upon printing.
There are some methods that you would want to implement. But it may need to check whether one of the methods is supported by the printer.
You may want to use javax.print.attribute.* classes in order to know the properties of your printer.
Here is the chunk of the code:
static class PrintJobWatcher
{
boolean done = true;
PrintJobWatcher(DocPrintJob job)
{
job.addPrintJobListener(
new PrintJobAdapter()
{
public void printJobCanceled(PrintJobEvent pje)
{
log.debug("Printing job was cancelled.");
notDone();
}
public void printJobFailed(PrintJobEvent pje)
{
log.error("Printing job failed.");
notDone();
}
public void printJobRequiresAttention()
{
log.error("Rectifiable problem occured (e.g. printer out of paper).");
notDone();
}
void notDone()
{
synchronized (PrintJobWatcher.this)
{
done = false;
PrintJobWatcher.this.notify();
}
}
}
);
}
}
And here the printing watcher is registered:
InputStream in = new FileInputStream( <<File instance>> );
in = new BufferedInputStream(in);
AttributeSet aset = new HashAttributeSet();
aset.add( new PrinterName( <<Printer name>>, null ) );
PrintService[] printers = PrintServiceLookup.lookupPrintServices( null, aset );
UAssert.check( printers.length > 0, "No printer found." );
//to use the 1st printer
PrintService service = printers[0];
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
Doc doc = new SimpleDoc(in, flavor, null);
DocPrintJob pj = service.createPrintJob();
PrintJobWatcher prWatcher = new PrintJobWatcher(pj);
PrintRequestAttributeSet prAset = new HashPrintRequestAttributeSet();
prAset.add(MediaSizeName.ISO_A4);
pj.print(doc, prAset);
in.close();
Regards,
Putrama
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|