1
多個來電短信的我有一些代碼閱讀黑莓
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條短信? 如果只是收聽1條短信,請給我提供代碼以便連續收聽短信。
如果您想要偵聽所有傳入的消息,請啓動一個偵聽消息的線程。 – Signare
感謝您的回覆,您可以提供我這樣的代碼如何做? – BirthOfTragedy