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?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

BlueCove requires the 32-bit JVM to run. Adding the -d32 argument to java to force the 32-bit JVM will fix the problem. You can do in Eclipse this under VM Arguments for the launch configuration.

link|improve this answer
1  
It's worth noting that this problem will occur under Windows as well. The -d32 trick works there, too. – pwc Feb 8 '11 at 23:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.