给你一个奇怪的问题。最近我的旧项目从java 7(jdk1.7.0_10)升级到java 8(1.8.0.91.x86_64)。在java 7中,它打印后脚本文件没有任何问题,现在它将postscript文件打印为纯文本而不是转换文件。这是在redhat linux环境中。我只是想打印一个包含文件本身的后脚本文件的字符串。
这是我的原始代码
DocFlavor flavor = DocFlavor.INPUT_STREAM.POSTSCRIPT;
PrintService pService = PrintServiceLookup.lookupDefaultPrintService();
// In a field environment, send to the printer
if (System.getenv("USER_DEFINED_RELTOP") == null || pfr.exists()) {
if (pService.getName().isEmpty()) {
LOGGER.error("No printer selected");
} else {
LOGGER.info("Printing to " + pService.getName());
DocPrintJob pj = pService.createPrintJob();
try {
InputStream is = new ByteArrayInputStream(data.getBytes("UTF8"));
Doc doc = new SimpleDoc(is, flavor, null);
PrintJobWatcher pjw = new PrintJobWatcher(pj);
pj.print(doc, null);
pjw.waitForDone();
is.close();
} catch (PrintException | IOException e) {
LOGGER.error(e);
} // try block
} // no printer selected
// Otherwise, send to a file
} else {
在java 7中运行良好,我将其更新为java 8中的oracle规范。 https://docs.oracle.com/javase/8/docs/api/javax/print/PrintService.html#createPrintJob--
https://docs.oracle.com/javase/8/docs/technotes/guides/jps/spec/printing.fm6.html
DocFlavor psFlavor = DocFlavor.INPUT_STREAM.POSTSCRIPT;
PrintRequestAttributeSet attrs = new HashPrintRequestAttributeSet();
attrs.add(MediaSizeName.ISO_A4);
PrintService[] pservices = PrintServiceLookup.lookupPrintServices(psFlavor,
attrs);
File pfr = new File(PFR_INDICATOR);
// In a field environment, send to the printer
if (System.getenv("USER_DEFINED_RELTOP") == null || pfr.exists()) {
//Check we have a printer capable of post script
if (pservices.length > 0) {
LOGGER.info("Printing to " + pservices[0].getName());
DocPrintJob pj = pservices[0].createPrintJob();
try {
InputStream fis = new ByteArrayInputStream(data.getBytes("UTF8"));
//byte[] ba =data.getBytes("UTF8");
Doc doc = new SimpleDoc(fis, psFlavor, null);
LOGGER.info("Doc Flavor " + doc.getDocFlavor());
PrintJobWatcher pjw = new PrintJobWatcher(pj);
LOGGER.info("PrintJob Attributes : " + pj.getAttributes());
pj.print(doc, attrs);
pjw.waitForDone();
fis.close();
} catch (IOException e) {
LOGGER.error(e);
NotificationDialog.show(NotificationDialog.NOTICE_TYPE.ERROR, PRINT_ERROR);
} catch (PrintException e) {
LOGGER.error(e);
}
} else { // no printer selected
这给了我一个错误java.awt.print.PrinterIOException:java.io.IOException:/ usr / bin / lpr:它看起来找不到lpr。
如果我保持原来的方式(不写入文件),即使添加检查以检查打印机是否支持后脚本,它也会将postscript打印为纯文本。如果我使用新的打印文件方式,我会得到一个未找到lpr的错误。如果我使用命令lpr打印PS文档,它会按预期转换它并打印正常。如果我使用不格式化的lpr -l,它也会将文档打印为纯文本。
任何建议/帮助都会很棒。我迷失了该怎么做。我真的不想将它转换成图像并打印出来。
答案 0 :(得分:0)
我猜你的打印机是HP或至少是PCL + PS打印机,而不是纯粹的PostScript打印机。
在这种情况下,您通常需要在PostScript中添加语言选择PJL字符串。如果你不这样做,那么它通常默认为PCL,如果你不发送任何PCL命令(都以0x1B开头),那么所有内容都被视为纯ASCII文本。这可以解释为什么你的应用程序和lpr -l最终都会写文本,但是lpr本身却没有(大概是它添加了PJL)。
您可以尝试使用以下内容预先添加PostScript文件:
%-12345X@PJL JOB
@PJL ENTER LANGUAGE=POSTSCRIPT
注意那里的第一个字节,%之前应该是一个0x1b的ESC字符,但我不能随便粘贴二进制文件....
尝试使用lpr -l
发送文件,如果有效,则可以尝试旧的打印方法。