在java中打印hex文件

发布于 2025-01-04 21:38:39 字数 170 浏览 1 评论 0原文

我想在收据打印机上打印十六进制文件。 为了进行测试,我使用 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 技术交流群。

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

发布评论

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

评论(1

静若繁花 2025-01-11 21:38:39

我不再确定字符串内部的语法,但您可以随时查找。在原理中你可以这样做:

Runtime.getRuntime().exec("cmd /c start copy /b test.hex lpt3:");

这是参考!< /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:

Runtime.getRuntime().exec("cmd /c start copy /b test.hex lpt3:");

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.

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