使用 PS 文件在 Java 中打印

发布于 2024-09-29 05:26:50 字数 68 浏览 2 评论 0原文

我有一个生成的后脚本文件并想使用它进行打印。如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一页 2024-10-06 05:26:50

复杂的。您的打印机支持 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 like NET 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文