JSR082 - LocalDevice.getLocalDevice() 返回 null
使用 Java Wireless Toolkit 3.0 中的 JSR082_1.1.jar,
我正在尝试获取本地设备(以便以后发现其他设备)
但我的通话一直为空 LocalDevice.getLocalDevice()
在文档中他们说这个方法不能返回 null... docs
我的蓝牙已打开,已在 2 上检查计算机(Win7 和 OSX 10.6)
救命! 谢谢
Using JSR082_1.1.jar from Java Wireless Toolkit 3.0,
I'm trying to get the local device (for later discovery of others)
but i keep getting null for the call
LocalDevice.getLocalDevice()
while in the docs they say this method cannot return null...
docs
My bluetooth is ON, checked on 2 computers (Win7 & OSX 10.6)
Help!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信与 Wireless Toolkit 一起分发的 JSR-82 JAR 文件仅包含接口,而不包含蓝牙 API 的工作实现。这允许您编译使用 JSR-82 的代码,但不能测试它。
您应该获得 Bluecove 的副本,这是一个可以在桌面上运行的 JSR-82 的免费实现。不过,请确保您使用的是 32 位 JVM(使用
-d32
命令行参数)。I believe the JSR-82 JAR file distributed with the Wireless Toolkit contains only the interfaces, not a working implementation of the Bluetooth API. This allows you to compile code that uses JSR-82 but not to test it.
You should get a copy of Bluecove, a free implementation of JSR-82 you can run on the desktop. Make sure you're using the 32-bit JVM, though (use the
-d32
command line argument).