smslib发短信实例代码(电脑发短信)
本文导语: SMSLib是一个由很多程序员共同开发的,用于支持GSM猫或者手机发送短信的开源项目,下面来个实例代码 代码如下:import java.util.ArrayList;import java.util.List; import org.apache.log4j.Logger;import org.smslib.ICallNotification;import org.smslib.IInboundMess...
SMSLib是一个由很多程序员共同开发的,用于支持GSM猫或者手机发送短信的开源项目,下面来个实例代码
import java.util.ArrayList;
import java.util.List;
import org.apache.log4j.Logger;
import org.smslib.ICallNotification;
import org.smslib.IInboundMessageNotification;
import org.smslib.IOutboundMessageNotification;
import org.smslib.InboundMessage;
import org.smslib.InboundMessage.MessageClasses;
import org.smslib.Library;
import org.smslib.Message.MessageEncodings;
import org.smslib.Message.MessageTypes;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.modem.SerialModemGateway;
/**
* @author terry
*
*/
public class SmsModem {
// 短信网关
private SerialModemGateway gateway = null;
java.util.ResourceBundle rb = null;//ResourceBundle.getBundle("SMS");
static SmsModem smsModem = null;
OutboundNotification outboundNotification = new OutboundNotification();
private static final Logger LOG = Logger.getLogger(SmsModem.class);
Service srv;
InboundNotification inboundNotification = new InboundNotification();
// Create the notification callback method for inbound voice calls.
CallNotification callNotification = new CallNotification();
public SmsModem() {
try {
//ReadMessages rm = new ReadMessages();
//rm.doIt();
rb = ResourceBundle.getBundle("sms");
String portName= "COM10";
int port = 9600;
LOG.info("default portName:" + portName);
LOG.info("default port:" + port);
if(rb != null)
{
LOG.info("RB is not null");
if(rb.getString("smsport") != null && !"".equals(rb.getString("smsport")))
{
portName = rb.getString("smsport");
LOG.info("portName:" + portName);
}
if(rb.getString("smsbolv") != null && !"".equals(rb.getString("smsbolv")))
{
port = Integer.valueOf(rb.getString("smsbolv"));
LOG.info("port:" + port);
}
}
// 初始化短信网关
gateway = new SerialModemGateway("modem." + portName, portName, port,
"wavecom", "17254");
} catch (Exception e) {
LOG.error("网关初始化失败:" + e.getMessage());
e.printStackTrace();
}
}
public static SmsModem getInstant() {
if (smsModem == null) {
smsModem = new SmsModem();
}
return smsModem;
}
public SerialModemGateway getGateway() {
return gateway;
}
public void sendMessage(String phone, String content) throws Exception {
doIt(phone, content);
}
/**
* 发送短信
* @param phone
* @param content
* @throws Exception
*/
public void doIt(String phone, String content) throws Exception {
OutboundMessage msg;
LOG.info("Sent Example: Send message from a serial gsm modem.");
LOG.info(Library.getLibraryDescription());
LOG.info("Sent Version: " + Library.getLibraryVersion());
if (srv == null) {
srv = new Service();
srv.S.SERIAL_POLLING = true;
gateway.setInbound(true);
gateway.setOutbound(true);
gateway.setSimPin("0000");
gateway.setOutboundNotification(outboundNotification);
gateway.setInboundNotification(inboundNotification);
gateway.setCallNotification(callNotification);
srv.addGateway(gateway);
srv.startService();
}
if (gateway != null) {
LOG.info("Sent Modem Information:");
LOG.info("Sent Manufacturer: " + gateway.getManufacturer());
LOG.info("Sent Model: " + gateway.getModel());
LOG.info("Sent Serial No: " + gateway.getSerialNo());
LOG.info("Sent SIM IMSI: " + gateway.getImsi());
LOG.info("Sent Signal Level: " + gateway.getSignalLevel() + "%");
LOG.info("Sent Battery Level: " + gateway.getBatteryLevel() + "%");
}
// Send a message synchronously.
msg = new OutboundMessage(phone, content);
msg.setEncoding(MessageEncodings.ENCUCS2);// 这句话是发中文短信必须的
srv.sendMessage(msg);
}
/**
* 发送消息类
* @author terry
*
*/
public class OutboundNotification implements IOutboundMessageNotification {
public void process(String gatewayId, OutboundMessage msg) {
LOG.info("Sent Outbound handler called from Gateway: " + gatewayId);
LOG.info(msg);
}
}
//接收消息类
public String readMessage()
{
StringBuffer sb = new StringBuffer("");
List msgList;
// Create the notification callback method for Inbound & Status Report
// messages.
try
{
System.out.println("Read Example: Read messages from a serial gsm modem.");
System.out.println(Library.getLibraryDescription());
System.out.println("Read Version: " + Library.getLibraryVersion());
// Create new Service object - the parent of all and the main interface
// to you.
if (srv == null) {
srv = new Service();
srv.S.SERIAL_POLLING = true;
gateway.setInbound(true);
gateway.setOutbound(true);
gateway.setSimPin("0000");
gateway.setOutboundNotification(outboundNotification);
gateway.setInboundNotification(inboundNotification);
gateway.setCallNotification(callNotification);
srv.addGateway(gateway);
srv.startService();
}
// Similarly, you may define as many Gateway objects, representing
// various GSM modems, add them in the Service object and control all of them.
//
// Start! (i.e. connect to all defined Gateways)
LOG.info("Read Modem Information:");
LOG.info("Read Manufacturer: " + gateway.getManufacturer());
LOG.info("Read Model: " + gateway.getModel());
LOG.info("Read Serial No: " + gateway.getSerialNo());
LOG.info("Read SIM IMSI: " + gateway.getImsi());
LOG.info("Read Signal Level: " + gateway.getSignalLevel() + "%");
LOG.info("Read Battery Level: " + gateway.getBatteryLevel() + "%");
// Read Messages. The reading is done via the Service object and
// affects all Gateway objects defined. This can also be more directed to a specific
// Gateway - look the JavaDocs for information on the Service method calls.
msgList = new ArrayList();
this.srv.readMessages(msgList, MessageClasses.ALL);
int num = 1;
for (InboundMessage msg : msgList)
{
sb.append("第" + num + "条;发件人:"+msg.getOriginator() + ";内容:" + msg.getText() + "n");
//sb.append(msg.toString() + "n");
LOG.info("第" + num + "条;发件人:"+msg.getOriginator() + ";内容:" + msg.getText() + "n");
num++;
LOG.info(msg);
}
// Sleep now. Emulate real world situation and give a chance to the notifications
// methods to be called in the event of message or voice call reception.
//System.out.println("Now Sleeping - Hit to terminate.");
//System.in.read();
}
catch (Exception e)
{
sb.append(e.getMessage());
e.printStackTrace();
}
finally
{
//this.srv.stopService();
}
return sb.toString();
}
public class InboundNotification implements IInboundMessageNotification
{
public void process(String gatewayId, MessageTypes msgType, InboundMessage msg)
{
if (msgType == MessageTypes.INBOUND) System.out.println(">>> New Inbound message detected from Gateway: " + gatewayId);
else if (msgType == MessageTypes.STATUSREPORT) System.out.println(">>> New Inbound Status Report message detected from Gateway: " + gatewayId);
System.out.println(msg);
try
{
// Uncomment following line if you wish to delete the message upon arrival.
// srv.deleteMessage(msg);
}
catch (Exception e)
{
System.out.println("Oops!!! Something gone bad...");
e.printStackTrace();
}
}
}
public class CallNotification implements ICallNotification
{
public void process(String gatewayId, String callerId)
{
System.out.println(">>> New call detected from Gateway: " + gatewayId + " : " + callerId);
}
}
}