tags:

views:

21

answers:

1

Hi, I’m trying to make a desktop application in Java SE to receive a file from a digital stethoscope via Bluetooth. The API Javax.comm doesn’t exist for Windows. I try the RXTX solution by I isn’t working. Someone have a solution? Thank you for your collaboration. Best regards. Daniel

+1  A: 

Have you tried using BlueCove? It conforms to the JSR-82 Specification. IT also has a JSR-82 Emulator.

The Elite Gentleman
Yes, i try. Using the Bluecove API, I discover the stethoscope address (device.getBluetoothAddress).Now, I would like to transfer the file from the stethoscope to the desktop application. I think I have to use the OBEX protocol but I’m not sure. And I don’t know what instruction I have to use.Can you help me?Thank you.Best regards.
Daniel Pereira
It's been years since I played with bluetooth: You can see an example here: http://forums.sun.com/thread.jspa?threadID=5329799
The Elite Gentleman