这个其实是一个很纠结的东西;国内的短信猫不是很稳定的
需要两个jar包
首先,把smslib-3.3.0b2.jar和comm.jar,放入工程lib中,javax.comm.properties放到%JAVA_HOME%/jre/lib下,
win32com.dll放到%JAVA_HOME%/jre/bin下。路径放错了,调用起来就会报错的。
环境配置好了以后,把examples\modem下的SendMessage.java和ReadMessages.java拷贝到你的开发工具下
这些应该是卖短信猫的厂家给你的东西~~没有可以网上下~
然后是发短信的代码 很少~~根据实际的业务进行整合就可以了~
Service srv;
OutboundMessage msg;
OutboundNotification outboundNotification = new OutboundNotification();
srv = new Service();
SerialModemGateway gateway = new SerialModemGateway("modem.com3", "COM3", 9600, "wavecom", null);//设置短信猫端口与波特率
gateway.setInbound(true);
gateway.setOutbound(true);
gateway.setSimPin("1234");
gateway.setOutboundNotification(outboundNotification);
srv.addGateway(gateway);
srv.startService()
msg = new OutboundMessage(mesread.getPhone(),messingle.getMes_content());//手机号码,和短信内容
msg.setEncoding(MessageEncodings.ENCUCS2);//这句话是发中文短信必须的
boolean a = srv.sendMessage(msg);
srv.stopService();