如何使用 BlueCove 在装有 Java 的 MacBook 上使用蓝牙?
我想在我的 MacBook Air 笔记本电脑上实现一个使用蓝牙的 Java 应用程序。我尝试使用 Java 蓝牙库 BlueCove。
我尝试实现第一个示例 DeviceDiscovery 但它抛出 < code>BluetoothStateException 并显示消息:BlueCove 库 bluecove 不可用
。我已将 bluecove-2.1.0.jar
添加到 Eclipse 中的构建路径中。
问题是什么?如何在 MacBook Air 上使用 BlueCove?
I would like to implement an Java application that uses Bluetooth on my MacBook Air laptop. I try to use the Java bluetooth library BlueCove.
I tried to implement the first example DeviceDiscovery but it throws an BluetoothStateException
with the message: BlueCove library bluecove not available
. I have added bluecove-2.1.0.jar
to my Build Path in Eclipse.
What is the problem? How can I use BlueCove with my MacBook Air?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BlueCove 需要 32 位 JVM 才能运行。将
-d32
参数添加到java
中以强制使用 32 位 JVM 将解决该问题。您可以在 Eclipse 中的启动配置的 VM 参数下执行此操作。BlueCove requires the 32-bit JVM to run. Adding the
-d32
argument tojava
to force the 32-bit JVM will fix the problem. You can do this in Eclipse under VM Arguments for the launch configuration.