最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
java实现短信回复
时间:2022-07-02 17:41:57 编辑:袖梨 来源:一聚教程网
程序员: 杨星辉java实现短信回复
*
* 日 期: 2008-7-4
*
* 时 间: 下午05:24:07
*
* 短信发送类
*/
import javax.wireless.messaging.*;
import javax.microedition.io.*;
public class Sender {
public Sender() {
}
/* 传入文字内容、电话号码、端口号,进行发送短信,结果为true or false */
public static boolean send(String content, String phonenumber,
String smsPort) {
boolean result = true;
try {
String address = "sms://" + phonenumber + ":" + smsPort;
MessageConnection conn = (MessageConnection) Connector.open(address);
TextMessage msg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
msg.setPayloadText(content);
conn.send(msg);
conn.close();
} catch (Exception e) {
result = false;
e.getMessage();
}
return result;
}
/* 无端口 发送短信 */
public static boolean send(String content, String phonenumber) {
boolean result = true;
try {
String address = "sms://" + phonenumber;
MessageConnection conn = (MessageConnection) Connector.open(address);
TextMessage msg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
msg.setPayloadText(content);
conn.send(msg);
conn.close();
} catch (Exception e) {
result = false;
e.getMessage();
}
return result;
}
}
相关文章
- 魔法工艺官网首页入口 魔法工艺官方网站 03-22
- 网上查火车票余票技巧-12306余票查询详细步骤 03-22
- 三国:谋定天下官网首页入口 三国:谋定天下官方网站 03-22
- 逆天纪官网首页入口 逆天纪官方网站 03-22
- 夸克高考使用指南-夸克高考志愿填报入口及教程详解 03-22
- 杀戮尖塔2禁忌魔典卡牌有什么用 禁忌魔典卡牌图鉴效果 03-22