在java中打印hex文件
我想在收据打印机上打印十六进制文件。 为了进行测试,我使用 cmd 和以下命令:“copy /b test.hex lpt3:”
现在我想要一个 java 程序,它可以将 test.hex 发送到打印机,但不能以图形形式发送。
请问,有人可以告诉我,我该怎么做吗?
预先感谢:D
I would like to print a hex file on a receipt printer.
For testing, I use the cmd with the command: "copy /b test.hex lpt3:"
Now I would like a java programm, which can send the test.hex to the printer, but not as graphic.
Please, can someone tell me, how I can do that?
Thanks in advance :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不再确定字符串内部的语法,但您可以随时查找。在原理中你可以这样做:
这是参考!< /a>
因此,如果您找不到直接从 java 访问自定义打印机的方法,您可以首先创建该 .hex 文件,然后使用 exec() 发送它。
I am not sure about the syntax inside the string anymore, but you can always look that up. In Principle you can do this:
Here is the reference!
So if you find no way to access that custom printer directly from java you can first create that .hex file, then use exec() to send it.