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);
}