假设我从MS Word等程序中打印了一些文档。假设我一次选择了4个文档,因此其中三个最终会在打印机队列中等待。我想访问并阅读有关队列中等待的文档的一些信息。换句话说,如何访问打印机队列并使用java读取有关任何挂起文件的信息?
有办法吗?如果是这样,我该怎么办?
感谢您的帮助
答案 0 :(得分:0)
在这里,您可以找到通过Java代码访问打印机的完整代码。
它提供了像
这样的功能答案 1 :(得分:0)
也许这个功能对你有帮助。
public Integer getExistQueuePrinter() {
int queue = 0;
PrintService myService = null;
PrintService printService = PrintServiceLookup.lookupDefaultPrintService();
if (printService != null) {
//--> set printService.
myService = printService;
//--> get attributes from printService.
AttributeSet attributes = printService.getAttributes();
//--> loop attributes.
for (Attribute a : attributes.toArray()) {
String name = a.getName();
String value = attributes.get(a.getClass()).toString();
//System.out.println(name + " : " + value);
if (name.equals("queued-job-count")) {
//System.out.println(name + " : " + value);
queue = Integer.parseInt(value);
}
}
Object[] obj = attributes.toArray();
//System.out.println("queue = " + obj[3]);
return queue;
/* debug.
for (Object value : obj) {
System.out.println("Color = " + value);
}
*/
}
return null;
}