java中如何访问USB端口

发布于 2024-08-18 16:33:25 字数 1539 浏览 5 评论 0原文

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

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

发布评论

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

评论(6

和我恋爱吧 2024-08-25 16:33:25

在跨平台(Linux 和 Windows)上使用 usb4java 已经一年了,效果很好。

请参阅:

http://usb4java.org/

他们非常活跃,并且拥有非常好的 javax USB 前端。

Been using usb4java for a year on cross platfom (Linux and Windows) and it works great.

See:

http://usb4java.org/

They are very active and have a very good javax USB front.

烟花肆意 2024-08-25 16:33:25

Java 中没有与 C# 的 USB 支持相当的功能。 jUSB 和 Java-USB 都严重过时,并且可能无法用于任何重要的应用程序开发。

如果您想实现跨平台 USB 应用程序,那么最好的选择是编写一个抽象的 JNI 与 Linux、Mac 和 Windows 本机库交互的界面,您必须自己编写。我会考虑 LibUSB 来处理 Mac 和 Linux。正如您所见,Windows 非常简单。我刚刚结束了一个为期一年的项目,就是这样做的,不幸的是,这是唯一认真的跨平台解决方案。如果您不必在 Windows 上实现并且您的需求有限,您可以使用较旧的 Java 库之一(jUSB 或 Java-USB)。任何需要在 Win32/Win64 上部署的内容都需要本机组件。

There is nothing equivalent to C#'s USB support in Java. Both jUSB and Java-USB are severely out-of-date and likely unusable for any serious application development.

If you want to implement a cross-platform USB application, really your best bet is to write an abstract JNI interface that talks to Linux, Mac and Windows native libraries that you'll have to write yourself. I'd look at LibUSB to handle Mac and Linux. Windows, as you've seen, is pretty straightforward. I just came off a year-long project that did just this, and unfortunately this is the only serious cross-platform solution. If you don't have to implement on Windows and your needs are limited, you may get by with one of the older Java libs (jUSB or Java-USB). Anything that needs to deploy on Win32/Win64 will need a native component.

葬シ愛 2024-08-25 16:33:25

您可能想看看 usb4java - http://usb4java.org/index.html 它出现支持 Windows、Linux 和 Mac OS,并且在发布时似乎是最新的。不幸的是,它处于 LGPL 之下,因此可能不适合商业开发。

You might want to have a look at usb4java - http://usb4java.org/index.html it appears to support Windows, Linux and Mac OS's and appears to be reasonably current at the time of posting. Is unfortunately under the LGPL so may not be suitable for commercial development.

葬花如无物 2024-08-25 16:33:25

请参阅 jUSBusb4java 库。

See the jUSB or usb4java libraries.

余生再见 2024-08-25 16:33:25

The Java Communications API. This should provide similar functionality to the C# System.IO.Ports namespace.

北城半夏 2024-08-25 16:33:25

如果您使用的是 Mac,则可以通过 /Volumes/ 目录访问 USB。

示例:

您想要写入“Drive”中的文件,因此文件路径为:

/Volumes/Drive/file.whatever

不确定它在其他平台上是如何完成的,但这是最简单的方法我在Mac上找到了

If you're on a mac, USB's can be accessed with the /Volumes/ directory.

Example:

You want to write to a file in "Drive", so the filepath would be:

/Volumes/Drive/file.whatever

Not sure how it's accomplished on other platforms, but this is the simplest way I've found on a mac

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