How to send AT-Commands via Bluetooth using JSR-82

Status
Nicht offen für weitere Antworten.
C

chao

Gast
Hello all,

I'm trying to write a program which should send AT-commands to a mobile phone via bluetooth. I use JSR-82 as API. The program establishes a SPP connection to the mobile phone and sends the AT-commands as a string. But the mobile phone does'nt response to the AT-commands. Is it possible to send AT-commands through a SPP connection? How can I receive a response from the mobile phone, if it gives me one?

here is the sending code:

try{
// connectionURL is got from service discovery, //servRecord.getConnectionURL(1,false)

connection = (StreamConnection) Connector.open(connectionURL);

OutputStream out = connection.openOutputStream();
InputStream in = connection.openInputStream();

String message = "ATD123445678";// AT-command to dial 12345678

// send AT-command
out.write(message.getBytes());

out.flush();
out.close();

byte buffer[] = new byte[10000];
// read the response from mobile phone
in.read(buffer);
System.out.println(buffer.toString());

connection.close();
} catch (Exception e){
e.printStackTrace();
}


Is there some thing wrong in the code? Why did the mobile phone not response to the AT-command?

thanks for any tips!
 
G

Guest

Gast
u are sending a string to the other phone, why should it execute a at command?

how does the code from the other side look like?
 
C

chao

Gast
yes, there is a string sent to the phone.

but how to send a AT command?
 
Status
Nicht offen für weitere Antworten.
Ähnliche Java Themen
  Titel Forum Antworten Datum
A Commands funktionieren manchmal nicht Android & Cross-Platform Mobile Apps 11
K Androidstudio Bluetooth connect Android & Cross-Platform Mobile Apps 6
xXSkyWalkerXx1 Android Bluetooth LE - Frage zur Funktionalität Android & Cross-Platform Mobile Apps 26
S Android Studio Bluetooth App Problem Android & Cross-Platform Mobile Apps 6
D Android Bluetooth Chat Example modifizieren Android & Cross-Platform Mobile Apps 6
T Musik über Bluetooth streamen Android & Cross-Platform Mobile Apps 2
H WIFI, Bluetooth und NFC Verbindung überwachen Android & Cross-Platform Mobile Apps 1
A Zweite Kamera an HTC und per Bluetooth kommunizieren? Android & Cross-Platform Mobile Apps 2
W Bluetooth und obex Package nutzen Android & Cross-Platform Mobile Apps 4
P Bluetooth vom remoteDevice auf den Stream Android & Cross-Platform Mobile Apps 9
K Java ME Bluetooth verbindung parameter Android & Cross-Platform Mobile Apps 3
K Java ME Bluetooth geräte suchen Android & Cross-Platform Mobile Apps 2
K Java ME J2ME Bluetooth - bluesoleil,bluecove, JSR82... ? Android & Cross-Platform Mobile Apps 6
S Wie teste ich meine Bluetooth Anwendung Android & Cross-Platform Mobile Apps 4
G Bluetooth LocalDevice.isPowerOn() meldet false Android & Cross-Platform Mobile Apps 2
R Bluetooth und Sun Wireless Toolkit 2.5.2 Android & Cross-Platform Mobile Apps 3
G Bluetooth Verbindung zwischen Handy und PC Android & Cross-Platform Mobile Apps 5
W Datenbankzugriff, WLAN, Bluetooth Android & Cross-Platform Mobile Apps 2
T Java Bluetooth Kalender Android & Cross-Platform Mobile Apps 2
G Bluetooth Verbindung Android & Cross-Platform Mobile Apps 2
J Bluetooth Stick und Lego Mindstorms Android & Cross-Platform Mobile Apps 2
O Bluetooth Verbindung zwischen 2 Handys Android & Cross-Platform Mobile Apps 5
D Bluetooth Pairing dem Programm ueberlassen? Android & Cross-Platform Mobile Apps 3
L HTTP via Bluetooth Android & Cross-Platform Mobile Apps 2
D Start/Stop Bit per Bluetooth von PC zu PC, oder PCtoHandy Android & Cross-Platform Mobile Apps 2
M bluetooth? Android & Cross-Platform Mobile Apps 3

Ähnliche Java Themen

Neue Themen


Oben