2008-03-27

j2me中发送短信

关键字: sms 短信
三星 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.setPayl ...
2008-01-14

在j2me中载入propreties资源

关键字: j2me
public Properties load(String res) throws IOException { Properties prop = new Properties(); DataInputStream is = null; try { is = new DataInputStream(this.getClass().getResourceAsStream(res)); StringBuffer sb = new StringBuffer() ...
pickerel
搜索本博客
最近加入圈子
存档
最新评论