在Java linux平台中,我如何连接到ttyS0或ttyUSB0来发送和接收数据?
我正在尝试连接到与我的其他操作系统工具(例如 minicom)配合使用的硬件。
但现在我正在用 Java 编写一个应用程序,以使用串行端口 RS232 连接到该设备。
但是我应该通过哪种本机方式从 Java 进行连接?我应该使用: http://204.93.165.39:8080/Giovynet/ 吗?或者是否有适用于 Linux 的免费开源包装器?
I am trying to connect to a hardware, which works with my other operating system tools (such as minicom).
But now i am writing an application in Java to connect to that device using serial port RS232.
But which native way i should connect from Java? Should i use: http://204.93.165.39:8080/Giovynet/ ? Or is there FREE open source wrappers available for linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在windoze上使用了rxtx,它似乎工作正常。有一个Linux版本: http://www.agaveblue.org/howtos/Comm_How-To .shtml
我有一些使用这个的代码,我可以发送给你。
i used rxtx on windoze and it seemed to work ok. there is a linux version: http://www.agaveblue.org/howtos/Comm_How-To.shtml
i have some code that uses this that i can send to you.
我发现这本串行编程维基百科很有帮助。
I found this Wikibook on Serial Programming to be helpful.