使用 PS 文件在 Java 中打印
我有一个生成的后脚本文件并想使用它进行打印。如何在java中使用javax print API或AWT来实现它?是否可以?
I have a generated post script file and want to print using it. How can it be achieved in java either using javax print API or AWT. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
复杂的。您的打印机支持 PostScript 吗?是联网的吗?如果是这样,大多数联网打印机都可以使用 LPR,您可以按原样推送文件。在 Windows 上,您还可以通过诸如 NET USE LPT1: \\[Computer Name]\Printer /PERSISTENT:YESlpt1: 映射端口>。
如果您在服务器上并且执行大量 PostScript 处理并且您的打印机基础设施支持它,那么我非常愿意研究 LPR 协议。我已经用 Java 编写了几个 LPR/LPD 管理函数来处理打印机作业,因此肯定知道它可以相对轻松地完成。
http://tools.ietf.org/pdf/rfc1179.pdf
Complicated. Does your printer(s) support PostScript? Is it networked? If so, most networked printers can talk LPR and you can shove the file over as-is. On Windows, you could also stream the file as-is to the
lpt1:
mapped port via something likeNET USE LPT1: \\[Computer Name]\Printer /PERSISTENT:YES
.If you're on a server and you do lots of PostScript handling and your printer infrastructure supports it, I would very much look into the LPR protocol. I've written several LPR/LPD management functions in Java to handle printer jobs, so definetely know it can be done with some relative ease.
http://tools.ietf.org/pdf/rfc1179.pdf