私はコードを持っています
DatagramConnection _dc =(DatagramConnection)Connector.open("sms://");
Datagram d = _dc.newDatagram(_dc.getMaximumLength());
_dc.receive(d); //Receive the sms
byte[] bytes = d.getData();
String address = d.getAddress(); //The address of the sms is put on a string.
String msg = new String(bytes);
上記のコードは着信 SMS を継続的にリッスンしますか、それとも 1 つの SMS だけをリッスンしますか? 1 つの SMS をリッスンするだけの場合は、SMS を継続的にリッスンするためのコードを教えてください。