假设我从MS Word之类的程序中打印了一些文档。假设我一次选择了4个文档,所以其中三个最终将在打印机队列中等待。我想访问和阅读有关队列中等待文档的一些信息。换句话说,如何使用java访问打印机队列并读取有关任何待处理文件的信息?

有没有办法做到这一点?如果是这样,我该怎么办?

谢谢您的帮助

最佳答案

也许此功能对您有帮助。

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;
}

07-26 00:51