1

このコードを実行しているときに実行時例外が発生します。ありがとう..

private void sendSMS(String phone, String message) throws IOException 
    {

//       TODO Auto-generated method stub
        Dialog.alert("Hello..In Send SMS Function");
        System.out.println("in send sms function");

        MessageConnection conn =
            (MessageConnection)Connector.open("sms://+919099956325");
        TextMessage tmsg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
        tmsg.setAddress("sms://+919429441335");
        tmsg.setPayloadText("HIIiii");
        System.out.println("Text message is>>"+tmsg);
        conn.send(tmsg);
}
4

1 に答える 1

1

それ以外の System.out.println("Text message is>>"+tmsg);

使用する

System.out.println("Text message is>>"+tmsg.getPayloadText());

またConnector.open、ブロッキング操作であり、メイン イベント スレッドから呼び出すことはできません。

Dialog.alertイベントスレッドでのみ機能するものがあります。これを行う

UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                Dialog.alert("Hello..In Send SMS Function");
                }
            });

このコードを試してください。これにより、新しいスレッドが開始され、sendms メソッドが呼び出されます

new Thread(new Runnable() {

        public void run() {
             try {
                sendSMS("123456789","message");
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        }
    }).start();

          private void sendSMS(String phone, String message) throws IOException 
          {
    try {
        UiApplication.getUiApplication().invokeLater(new Runnable() {
            public void run() {
            Dialog.alert("Hello..In Send SMS Function");
            }
        });
        System.out.println("in send sms function");

        MessageConnection conn =
            (MessageConnection)Connector.open("sms://+919099956325");
        TextMessage tmsg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
        tmsg.setAddress("sms://+919429441335");
        tmsg.setPayloadText("HIIiii");
        System.out.println("Text message is>>"+tmsg.getPayloadText());
        conn.send(tmsg);
    } catch (Exception e) {
        System.out.println("Exception is >>"+e.toString());
    }
}
于 2012-10-12T10:09:15.313 に答える