i need to send sms (text string) from one mobile to another mobile using bluetooth. Im developing this using J2ME.
I know basics of J2ME and midlets. And have managed to detect active mobile bluetooth device in proximity.
What all java library files and functions would i need to send an sms?
You can’t “send SMS over bluetooth”.
If you are looking for a way to send a piece of text from one handset to another, a good bet would be to create a MIDlet to use JSR 82 OBEX to send a string with the MIME header
text/plain— on some handsets this will be interpreted as an incoming note which can then be read.For a full Bluetooth chat system, you would need a receiving MIDlet on the other side, and probably to create your own custom protocol between them.
There are already apps out there which do this.