不同机型中使用j2me调出拨号和发短消息
1,j2me调出拨号通常情况下只需这样(对于Nokia,SE,三星):
public void sendSMS(String number, String content) {try { com.samsung.util.SM sm = new com.samsung.util.SM();//samsung api sm.setData(content); sm.setDestAddress(number); com.samsung.util.SMS.send(sm); Screen.infoText = "短信已发送";} catch (Exception e) { Screen.infoText = "短信未发出";} }