有没有可用的 Java 支持的条形码阅读器设备?

发布于 2024-08-18 23:21:18 字数 34 浏览 7 评论 0原文

我想使用 Java 从条形码设备读取条形码。请指导我。

I want to read barcode from barcode device using Java. Please guide me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

蹲在坟头点根烟 2024-08-25 23:21:18

您需要一个可以进行键盘输入输出的扫描仪吗? cCOMM (RS232) 扫描仪 不进行键盘输入的 USB 扫描仪?

大多数条形码读取是通过将条形码简单地输入键盘来完成的。这不需要任何 Java 编程,因为条形码扫描仪只是将键盘事件发送到您的应用程序。只需将焦点放在文本字段中,扫描即可。

其他选项是 COMM 通信

阅读所有相关信息
http://java.sun.com/products/javacomm/
在这里
http://www.jcontrol.org/download/rxtx_en.html

您可以连接USB 设备连接到您的计算机并使用正确的设备驱动程序读取它们,就像它们是 COMM 设备一样
这比使用 USB 本身更好,因为它比 COMM 通信复杂得多

do you need a scanner that does keyboard inout ? a cCOMM (rS232) scanner a USB scanner that doesnt do keybaord input ??

Most barcode reading is done by simpel barcode to keyboard input. This works without any programming in Java as it is your barcodescanner that just send keybaord events to your application. just put focus in a textfield , scan and it works.

The other options is COMM communication

read all about it
http://java.sun.com/products/javacomm/
and here
http://www.jcontrol.org/download/rxtx_en.html

you can connect USB devices to your computer and with the proper device driver read them as if they are COMM devices
This can be better then using USB itself as its far more complex then COMM communication

雪落纷纷 2024-08-25 23:21:18

嗯..任何条形码阅读器都能够将条形码翻译成字符,对吧?它的工作原理就像您用键盘输入字符一样。我认为你不需要一个基于java的。

Well.. Any barcode reader is able to translate the barcode into characters, right? It works just like you type the characters in with your keyboard. I don't think you need a java-based one.

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