Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to connect two Bluetooth devices using J2ME. Both devices connect successfully and also transfer data very well. If one of the devices has its Bluetooth switched off, how can the other device know that the connection has been lost?

MIDP= 2.0  
cldc= 1.1
share|improve this question
Have you actually tried this scenario to see what happens? I guess if you have an active connection with a device and it drops for whatever reason, some sort of IOException will be thrown on the stream. – funkybro Apr 28 '11 at 8:00

3 Answers

up vote 0 down vote accepted

i am currently developing a J2ME game that works over bluetooth, and you could run into two different scenarios, the first being one of the devices falling out of range and failing to deliver data and that can be solved by forcing the communicating devices to send acknowledgments on receiving data, and checking for that every fixed period of time, the second scenario which resembles yours, will cause an Exception, probably an IOException which can be caught and dealt with.

harshad

share|improve this answer

Hey Hi, You need to run one thread in J2ME application,this thread running after some period of time & this thread needs to check whether Bluetooth connection available for selected Bluetooth or not. Thanks

share|improve this answer

i am currently developing a J2ME game that works over bluetooth,
and you could run into two different scenarios, the first being one of the devices falling out of range and failing to deliver data and that can be solved by forcing the communicating devices to send acknowledgments on receiving data, and checking for that every fixed period of time, the second scenario which resembles yours, will cause an Exception, probably an IOException which can be caught and dealt with.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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