如何从JAVA获得Zebra USB打印机状态

时间:2015-04-20 11:39:15

标签: java printing zebra-printers

我的打印机Zebra TTP 7030通过USB连接到本地计算机。

我可以使用javax.print API打印数据,但我无法从打印机获取打印机状态或任何数据。

我尝试从Java printService属性获取打印机状态,但它没有返回有关打印机实时状态的任何有价值的信息。

Class<? extends Attribute>[] supportedAttributeCategories = (Class<? extends Attribute>[]) service.getSupportedAttributeCategories();

            for (Class<? extends Attribute> category : supportedAttributeCategories) {
                DocFlavor[] flavors = service.getSupportedDocFlavors();
                for (DocFlavor flavo : flavors) {
                    Object supportedAttributeValues = service.getSupportedAttributeValues(category, flavo, service.getAttributes());
                    if (supportedAttributeValues instanceof Attribute) {
                        Attribute attr = (Attribute) supportedAttributeValues;
                        attribSet.add(attr);
                    } else if (supportedAttributeValues != null) {
                        Attribute[] attrs = (Attribute[]) supportedAttributeValues;
                        for (Attribute attr : attrs) {
                            attribSet.add(attr);
                        }
                    }
                }
            }

            for (Attribute attr : attribSet) {
                System.out.println(attr.getName());

                System.out.println(service.getDefaultAttributeValue(attr.getCategory()));
            }

Zebra的Link OS SDK不支持我的打印机。有没有办法获得打印机状态?

解决方案:我使用JNA获取斑马打印机的Windows打印机状态。

以下是如何使用JNA获取打印机信息的示例 How can i get a printer's make and model in Java?

1 个答案:

答案 0 :(得分:2)

如果Zebra打印机仍然可以使用ZPL,您可以发送命令,只需打开虚拟Com端口并直接发送基于ZPL文本的命令

(使用Z4000及以下工作正常) 〜HS 获得状态。