📄 e707. determining print job capabilities supported by a print service.txt
字号:
The capabilities of a print job are called print job attributes. Examples of print job attributes include - Copies, OrientationRequested, and Destination. This example demonstrates how to retrieve the supported print job attributes of a print service.
// Get all print job attributes of a print service
Class[] cats = service.getSupportedAttributeCategories();
for (int j=0; j<cats.length; j++) {
Attribute attr = (Attribute)service.getDefaultAttributeValue(cats[j]);
if (attr != null) {
// Get attribute name and values
String attrName = attr.getName();
String attrValue = attr.toString();
Object o = service.getSupportedAttributeValues(attr.getCategory(), null, null);
if (o.getClass().isArray()) {
for (int k=0; k<Array.getLength(o); k++) {
Object o2 = Array.get(o, k);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -