我有一个将PDF文件发送到打印机的java代码。 Java代码是这样的:
import java.awt.print.PrinterJob;
import javax.print.PrintService;
import javax.print.PrintServiceLookup;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.pdfbox.pdmodel.PDDocument;
public class PrintPdf {
protected final Log logger = LogFactory.getLog(getClass());
public void print(String pdfFile, String printer, int copies) throws Exception {
PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
PDDocument document = null;
try
{
document = PDDocument.load( pdfFile );
PrinterJob printJob = PrinterJob.getPrinterJob();
PrintService[] printServices = PrinterJob.lookupPrintServices();
PrintService myService = null;
if (printServices.length > 0)
{
for(PrintService service : printServices) {
if(service.getName().toLowerCase().contains(printer.toLowerCase())) {
myService = service;
break;
}
}
if (myService == null) {
throw new Exception("Printer not found " + printer);
} else {
logger.info("Printer found " + myService.getName());
}
} else {
throw new Exception("No print services found");
}
printJob.setPrintService(myService);
printJob.setCopies(copies);
document.silentPrint( printJob );
}
finally {
if( document != null ) {
document.close();
}
}
}
从批处理文件中调用此java。我已经安排了一个Windows任务来每隔X分钟运行一次文件。计划任务与具有管理员权限的用户一起运行。所有这些都在Windows 2003服务器上运行。 使用TCP / IP地址设置打印机。
问题:当用户登录时,任务运行并可以将PDF文件发送到打印机。 当用户未登录时,任务运行但java返回错误:
java.awt.print.PrinterException: Invalid name of PrintService
Java程序在打印命令之前成功地在循环中列出了可用的打印服务,但由于某种原因,在用户未登录时无法打印文档。
请问有人可以就这里可能出现的问题给我一些建议吗?
编辑: 行中出现异常:
printJob.setPrintService(myService);
答案 0 :(得分:0)
此问题的解决方案是将操作系统上的现有java从版本6u45升级到7u21。