如何在 BlackBerry 中以编程方式发送 SMS?
我在某处读到,我需要服务器端和客户端代码来发送 SMS。这是真的吗?对于从一台设备向另一台设备或从模拟器向设备发送消息,我真的需要服务器端和客户端代码吗?
我在客户端的某个地方找到了这段代码,但我没有得到输出。
private void sendSMS(String phone, String message) throws RuntimeException, ServicesManagerException, IOException
{
// TODO Auto-generated method stub
System.out.println("in send sms function");
MessageConnection conn =
(MessageConnection)Connector.open("sms://+919099087960");
BinaryMessage msgOut = (BinaryMessage) conn.newMessage(MessageConnection.BINARY_MESSAGE);
msgOut.setPayloadData("my binary payload".getBytes("UTF-8"));
conn.send(msgOut);
}