如何使用 Java SE 获取 USB/蓝牙 GPS 接收器位置
我有一个 USB/蓝牙 GPS 接收器,我想知道如何使用 Java SE Desktop 获取 GPS 位置?我找不到 java se 的信息。有例子吗?
谢谢
I have a usb/bluetooth gps receiver and I would like to know how could I get the gps location using Java SE Desktop? I couldn't find information for java se. Is there any example?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道的大多数 USB GPS 接收器都在(虚拟)串行端口上以 NMEA 格式提供数据。
所以必须连接串口才能读取数据。我从未在 Java 中使用过串口,但我想那里有很多文档和教程。也许这本 Wikibook 是一个很好的起点。
Most USB GPS receivers I know provide the data on a (virtual) serial port in NMEA-format.
So you have to connect to the serial port to read the data. I have never used a serial port in Java, but I guess there are many docs and tutorials out there. Maybe this Wikibook is a good starting point.