我正在尝试使用 javax.print 将 PDF/DOC/ODT 文件发送到连接到 LAN 中的打印机,但它甚至没有将作业发送到打印队列。我尝试“正常”打印文件(使用 Adobe Reader /Open Office)并且工作正常,因此打印机连接良好。我还尝试将它从代码发送到虚拟打印机(PDFCreator)并且它有效。
这是我正在使用的代码:
public Boolean Imprimir (String filePath){
Boolean correct = true;
FileInputStream psStream = null;
try {
psStream = new FileInputStream(filePath);
} catch (FileNotFoundException ex) {
ex.printStackTrace();
correct = false;
}
if (psStream != null) {
DocFlavor psInFormat = DocFlavor.INPUT_STREAM.AUTOSENSE;
Doc myDoc = new SimpleDoc(psStream, psInFormat, null);
PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
PrintService[] services = PrintServiceLookup.lookupPrintServices(psInFormat, aset);
PrintService myPrinter = null;
for (int i = 0; i < services.length; i++){
String svcName = services[i].toString();
if (svcName.contains("Xerox")){
myPrinter = services[i];
break;
}
}
if (myPrinter != null) {
DocPrintJob job = myPrinter.createPrintJob();
try{
job.print(myDoc, aset);
}
catch(PrintException ex){
ex.printStackTrace();
correct = false;
}
} else {
System.out.println("No printer services found");
correct = false;
}
}
else{
correct = false;
}
return correct;
}
打印机使用 LPR 协议连接。
提前致谢
编辑:我也尝试过使用 jLpr,正如其他帖子中所建议的那样(Java 直接打印到 Postscript 网络打印机)。它也不起作用,但没有错误消息,作业没有出现在打印机的队列中。