`

j2me中发送短信

    博客分类:
  • J2ME
阅读更多
三星

SM sm = new SM();
sm.setDestAddress("10086");
sm.setData("hello, world");
SMS.send(sm);


通用
String address = "sms://+10086"
MessageConnection conn = (MessageConnection)Connector.open(address);
TextMessage msg = (TextMessage)conn.newMessage(MessageConnection.TEXT_MESSAGE);
msg.setPayloadText("hello, world");
conn.send(msg); 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics