如何拦截发送到打印机的数据?
我正在与一个将原始打印机文件发送到默认打印机的应用程序进行交互。这是它对数据所做的唯一事情。
我需要以某种方式获取此文件,以便我可以将其存储在其他地方。最好的方法是什么?
我想到的最好的方法是编写一个侦听特定端口的应用程序,并将默认打印机设置为该端口。
这种方式行得通吗?有更好的办法吗?
I'm interfacing with an application that's sending a raw printer file to the default printer. This is the only thing it will do with the data.
I need to get this file somehow so I can store it elsewhere instead. What would be the best way to do this?
The best I've thought of is to write an app that listens to a specific port, and set the default printer to that port.
Would this way work? Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了 Java 的 LDP 实现,我将对其进行修改和使用。您可以将其作为打印机访问,然后对原始文件执行您想要的操作。
http://lpdspooler.sourceforge.net/
I ran across and LDP implementation for Java that I'm going to modify and use. You can access it as a printer and then do what you want with the raw files.
http://lpdspooler.sourceforge.net/