Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to write a program in J2ME to turn the Bluetooth on/off automaticly in a certain time without the user permission.

I'v been looking for a while but I couldn't find an answer.

share|improve this question

3 Answers

Some phones will automatically switch bluetooth ON when a MIDlet starts using the Java ME Bluetooth API.

Other phones will not.

AFAIK, there is no Java ME API to switch bluetooth ON/OFF.

I have yet to find a mobile phone that automatically switches bluetooth OFF after some time of inactivity.

Any way you find to do this (I'm sure it's doable in Symbian OS C++, for example) will be platform-dependant.

share|improve this answer
"I have yet to find a mobile phone that automatically switches bluetooth OFF after some time of inactivity." My HTC S750 does this – Sk93 Mar 15 '10 at 14:50
HTC S750 = windows mobile 5.0? so maybe you can also do this with windows mobile native or C# programming... – QuickRecipesOnSymbianOS Mar 15 '10 at 16:09
thanx, i think all go for Symbian first then WM – Abdulaziz Apr 3 '10 at 10:54

There is definitely no way to programmatically switch your Bluetooth on and off in Java ME. However what may be useful is to switch between discoverable modes:

LocalDevice.getLocalDevice().setDiscoverable(DiscoveryAgent.GIAC);

to be discoverable, and

LocalDevice.getLocalDevice().setDiscoverable(DiscoveryAgent.NOT_DISCOVERABLE);

to hide from other devices. It doesn't save battery, but it does make things that little bit more secure I guess.

share|improve this answer
ty, but i think u can do it with MIDP 2.1 but really few mobile devices support it so i am going for Symbian atm then WM – Abdulaziz Apr 3 '10 at 10:57
OK, as far as I was aware there's nothing new in MIDP 2.1 that allows more Bluetooth functionality as it still uses JSR-82, which is an optional package, either way. Symbian is probably the best way to go - it gives much lower-level access to the hardware, although there's currently debates whether Symbian will still be worth supporting in the future since Nokia has publicly backed the new MeeGo OS and Symbian Ltd. was absorbed by Nokia. – David Johnson Apr 3 '10 at 13:06

No way. We cannot be able to automatically turn on/off bluetooth in java & j2me. Better you refer to the documentation of JSR 82

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.