Results 1 to 3 of 3
- 01-19-2011, 02:55 AM #1
Member
- Join Date
- Jan 2011
- Location
- Taiwan
- Posts
- 1
- Rep Power
- 0
help please~~ my javax.comm prog hangs outputting to bluetooth com port
Hi all,
I'm using the java comm API and my program scans through each available com port, each sending out a handshake code, and the port that replies back the "password" is labeled as our device. I'm doing this so users won't have to do a com port selection.
The problem now is, if it gets to a bluetooth generated port, the program simply hangs on:
outputStream.write(byteBuffer);
This behaves the same under debug, as if it's waiting for something, and no exceptions are caught for this, it just hangs on that line :(
Has anyone ever had this problem? or is there a way to write a timeout for the outpustream.write line..etc?
my prog wasn't designed for bluetooth btw, it connects to health care instruments through a converter cable of 5pin mini-usb & usb
Thanks
- 01-22-2011, 12:50 PM #2
Member
- Join Date
- Nov 2010
- Location
- New Delhi
- Posts
- 50
- Rep Power
- 0
i have used the javax.comm. but not on blue tooth
you should do it some thing like
first write single byte for handshake and asks ur communicating device to send back any per defined byte for handshake.
then put ur code in if statement
like
if(bytercvd==0x32)
outputStream.write(byteBuffer);
after that to end the communication ask for another byte like
f(bytercvd==0x70)
serialPort.close();
u can have a look on this example for more details
Reading and Writing Data from comm port in JAVA
- 03-04-2011, 09:14 AM #3
Member
- Join Date
- Mar 2011
- Posts
- 1
- Rep Power
- 0
Similar Threads
-
import javax.comm
By kareena in forum Threads and SynchronizationReplies: 2Last Post: 09-21-2010, 03:45 PM -
javax.comm:Error instantiating class com.sun.comm.Win32Driver
By bbq in forum Advanced JavaReplies: 7Last Post: 07-12-2010, 04:24 PM -
Transfering files over Bluetooth (with javax.bluetooth)
By weber10 in forum CLDC and MIDPReplies: 0Last Post: 02-26-2009, 08:14 PM -
javax.microedition.io/ javax.bluetooth
By ahtiven in forum New To JavaReplies: 3Last Post: 01-13-2009, 02:54 PM -
javax/comm/SerialPortEvent
By musiigedeo in forum Threads and SynchronizationReplies: 9Last Post: 11-24-2008, 11:07 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks