最近公司项目需要使用短信设备进行相关操作提示,于是申请了一个西门子模块的短信设备。今天刚刚到手就开始测试,按照淘宝卖家的说明进行操作总是报异常。
org.smslib.GatewayException: Comm library exception: java.lang.reflect.Invocatio
nTargetException
at org.smslib.modem.SerialModemDriver.connectPort(SerialModemDriver.java
:93)
at org.smslib.modem.AModemDriver.connect(AModemDriver.java:106)
at org.smslib.modem.ModemGateway.startGateway(ModemGateway.java:111)
at org.smslib.Service$1Starter.run(Service.java:227)</
询问卖家原因可能在什么地方,得到的回答是不懂开发。于是开始自己“埋头苦干”。首先确定了驱动没有问题,USB模拟串口没有问题,基础环境和jar包等路径没有问题。-_-!我就崩溃了,到底是哪里的问题呢,分析了一圈,发现Myeclipse中“windows”->“preferences”->"java"->"installed jres",Myeclipse默认使用的是自己的JRE,需要手动将你选择你安装的“JAVA_HOME”/JRE,这样问题就解决了。在使用卖家提供的smslib-3.3.0b2.jar只能使用网上的发送短信源码,不能使用接收短信源码。请将jar文件替换成smslib-3.5.1.jar就可以了
现将网上的源码公布一下:
测试端口
package test;
import java.util.Enumeration;
import org.smslib.helper.CommPortIdentifier;
public class TEST {
public static void main(String [] args){
Enumeration en = CommPortIdentifier.getPortIdentifiers();
CommPortIdentifier portId;
while (en.hasMoreElements()) {
portId = (CommPortIdentifier) en.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL){
System.out.println(portId.getName());
System.out.println("=============");
}
}
}
}
发送短信源码
package test;
import org.smslib.AGateway;
import org.smslib.GatewayException;
import org.smslib.IOutboundMessageNotification;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.Message.MessageEncodings;
import org.smslib.modem.SerialModemGateway;
public class SendMessage {
public class OutboundNotification implements IOutboundMessageNotification {
public void process(AGateway agateway, OutboundMessage outboundmessage) {
System.out.println("Outbound handler called from Gateway: " + agateway);
System.out.println(outboundmessage);
}
}
@SuppressWarnings("deprecation")
public void sendSMS(String mobilePhones, String content) throws GatewayException {
Service srv;
OutboundMessage msg;
OutboundNotification outboundNotification = new OutboundNotification();
// srv = new Service();
srv = Service.getInstance();
SerialModemGateway gateway = new SerialModemGateway("modem.com3", "COM3", 115200, "wavecom", ""); // 设置端口与波特率
gateway.setInbound(true);
gateway.setOutbound(true);
gateway.setSimPin("1234");
// gateway.setOutboundNotification(outboundNotification);
srv.setOutboundMessageNotification(outboundNotification);
srv.addGateway(gateway);
System.out.println("初始化成功,准备开启服务");
try {
srv.startService();
System.out.println("服务启动成功");
String[] phones = mobilePhones.split(",");
for (int i = 0; i < phones.length; i++) {
msg = new OutboundMessage(phones[i], content);
msg.setEncoding(MessageEncodings.ENCUCS2); // 中文
srv.sendMessage(msg);
}
srv.stopService();
srv.removeGateway(gateway);
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) throws GatewayException {
SendMessage sendMessage = new SendMessage();
sendMessage.sendSMS("手机号码", "短信内容");
}
}
接收短信源码
package test;
import java.util.ArrayList;
import java.util.List;
import javax.crypto.spec.SecretKeySpec;
import org.smslib.AGateway;
import org.smslib.ICallNotification;
import org.smslib.IGatewayStatusNotification;
import org.smslib.IInboundMessageNotification;
import org.smslib.IOrphanedMessageNotification;
import org.smslib.InboundMessage;
import org.smslib.Library;
import org.smslib.Service;
import org.smslib.AGateway.GatewayStatuses;
import org.smslib.AGateway.Protocols;
import org.smslib.InboundMessage.MessageClasses;
import org.smslib.Message.MessageTypes;
import org.smslib.crypto.AESKey;
import org.smslib.modem.SerialModemGateway;
public class ReadMessages {
public static Service srv = Service.getInstance();
public void doIt() throws Exception {
List<InboundMessage> msgList;
InboundNotification inboundNotification = new InboundNotification();
CallNotification callNotification = new CallNotification();
GatewayStatusNotification statusNotification = new GatewayStatusNotification();
OrphanedMessageNotification orphanedMessageNotification = new OrphanedMessageNotification();
try {
System.out.println("Example: Read messages from a serial gsm modem.");
System.out.println(Library.getLibraryDescription());
System.out.println("Version: " + Library.getLibraryVersion());
SerialModemGateway gateway = new SerialModemGateway("modem.com3", "COM3", 115200, null, null);
gateway.setProtocol(Protocols.PDU);
gateway.setInbound(true);
gateway.setOutbound(true);
srv.setInboundMessageNotification(inboundNotification);
srv.setCallNotification(callNotification);
srv.setGatewayStatusNotification(statusNotification);
srv.setOrphanedMessageNotification(orphanedMessageNotification);
srv.addGateway(gateway);
srv.startService();
System.out.println();
System.out.println("Modem Information:");
System.out.println(" Manufacturer: " + gateway.getManufacturer());
System.out.println(" Model: " + gateway.getModel());
System.out.println(" Serial No: " + gateway.getSerialNo());
System.out.println(" SIM IMSI: " + gateway.getImsi());
System.out.println(" Signal Level: " + gateway.getSignalLevel() + "%");
System.out.println(" Battery Level: " + gateway.getBatteryLevel() + "%");
System.out.println();
srv.getKeyManager().registerKey("+8613808080808", new AESKey(new SecretKeySpec("0011223344556677".getBytes(), "AES")));
msgList = new ArrayList<InboundMessage>();
srv.readMessages(msgList, MessageClasses.ALL);
for (InboundMessage msg : msgList) {
System.out.println(msg);
// srv.deleteMessage(msg); //删除短信
}
System.out.println("Now Sleeping - Hit <enter> to stop service.");
System.in.read();
System.in.read();
} catch (Exception e) {
e.printStackTrace();
}
}
public class InboundNotification implements IInboundMessageNotification {
public void process(AGateway gateway, MessageTypes msgType, InboundMessage msg) {
if (msgType == MessageTypes.INBOUND)
System.out.println(">>> New Inbound message detected from Gateway: " + gateway.getGatewayId());
else if (msgType == MessageTypes.STATUSREPORT)
System.out.println(">>> New Inbound Status Report message detected from Gateway: " + gateway.getGatewayId());
System.out.println(msg);
}
}
public class CallNotification implements ICallNotification {
public void process(AGateway gateway, String callerId) {
System.out.println(">>> New call detected from Gateway: " + gateway.getGatewayId() + " : " + callerId);
}
}
public class GatewayStatusNotification implements IGatewayStatusNotification {
public void process(AGateway gateway, GatewayStatuses oldStatus, GatewayStatuses newStatus) {
System.out.println(">>> Gateway Status change for " + gateway.getGatewayId() + ", OLD: " + oldStatus + " -> NEW: " + newStatus);
}
}
public class OrphanedMessageNotification implements IOrphanedMessageNotification {
public boolean process(AGateway gateway, InboundMessage msg) {
System.out.println(">>> Orphaned message part detected from " + gateway.getGatewayId());
System.out.println(msg);
return false;
}
}
public static void main(String args[]) {
ReadMessages app = new ReadMessages();
try {
app.doIt();
} catch (Exception e) {
e.printStackTrace();
}
}
}
以上所有代码均经过XP测试通过,明天进行win03测试,后续准备进行linux的测试。
分享到:
相关推荐
5. **错误处理与重试策略**:由于网络问题或服务提供商故障,短信发送可能会失败。因此,程序应包含适当的错误处理逻辑,并实施重试策略,如递增延迟重试,以提高成功率。 6. **批量发送与队列管理**:对于大规模的...
本主题主要探讨的是如何使用Java来实现SMGP协议进行短信发送,以及相关的开发资源。 首先,`zjtelecom-1.0.jar`是一个Java库文件,它包含了实现SMGP协议所需的各种类和方法。这个库可能包含了对SMGP报文构造、解析...
Java发送短信程序是一种常见的通信技术,它允许应用程序通过网络向移动设备发送文本消息。这个程序通常涉及使用SMS(Short Message Service)服务提供商的API来实现。以下是对这一主题的详细阐述: 1. **Java编程...
短信猫(SMS Modem)是一种硬件设备,它能够通过连接到计算机来发送和接收短信,模拟手机的功能,实现自动化和批量的短信操作。本文将深入探讨短信息发送的相关知识点,包括短信猫的工作原理、API接口、短信协议以及...
【端口短信】端口短信是指通过特定服务端口发送的短信,常用于商业广告、通知提醒等应用场景。近年来,随着点对点短信的减少,端口短信成为手机短信业务的主要形式。端口短信因其便捷的推广性质和相对低廉的成本,被...
深信服短信插件开发与设置 深信服短信插件是深信服公司开发的一款插件,用于实现深信服系统中的短信...但是,在使用过程中,需要注意手机号码格式、版本升级和短信接口参数设置等问题,以便正确地使用深信服短信插件。
短信猫是一种硬件设备,它允许用户通过计算机来发送和接收短信,通常通过串行端口(COM口)或者USB接口连接到电脑。 短信猫的工作原理是将SIM卡插入设备中,然后通过标准的通信协议(如AT命令集)与计算机进行交互...
CMPP2.0短信网关发送短信代码是Java开发者用于与中国移动通信集团的短信服务进行交互的一种技术实现。CMPP(China Mobile Short Message Peer-to-Peer)2.0协议是移动运营商提供的一种通信协议,主要用于短信业务的...
【PB 11.5短信发送源码(纯api)】是基于PowerBuilder 11.5开发的一个短信发送程序,它使用API接口与短信猫设备进行通信,实现了高效、稳定的短信发送功能。以下是该程序的主要特点和相关知识点: 1. **多线程**:...
这个程序允许用户通过特定的硬件设备——短信猫,向指定的手机发送短信。短信猫,全称“Modem for SMS”,是一种可以连接到计算机并模拟电话功能的设备,通过SIM卡接口实现短信收发功能。 1. **Java SMS库的使用** ...
标题中的“用短信猫发送短信java版及所需jar包”是指使用Java编程语言来通过短信猫设备发送短信的功能。短信猫是一种硬件设备,通常通过USB或串口与计算机连接,可以模拟手机SIM卡来发送和接收短信。这个项目提供了...
短信猫是一种能够通过USB接口连接到计算机的设备,它能够模拟串行COM端口,使得电脑可以通过模拟的COM口与移动网络交互,实现短信的发送和接收。 在“USB转COM口”技术中,设备(如短信猫)通过USB接口连接到电脑,...
在VB(Visual Basic)开发中,短信接口的集成是一个常见的需求,例如用于发送验证码或订单通知。本示例介绍如何使用VB与互亿无线短信服务进行接口开发。 首先,要使用互亿无线短信接口,您需要在他们的官方网站...
在IT行业中,GSM短信猫(GSM Modem)是一种常用的设备,用于通过GSM网络发送和接收短信。本文将详细讲解如何利用GSM短信猫,并结合Visual Studio 2010(VSS2010)进行短信的发送。 首先,GSM短信猫是一种硬件设备,...
1. **配置信息**:如短信网关的地址、端口、用户名和密码等,这些信息需要安全地存储,并在发送短信时使用。 2. **连接管理**:建立与短信网关的连接,处理网络异常,确保数据传输的可靠性。 3. **消息构建**:...
在IT行业中,开发人员经常需要实现与硬件设备的交互,比如短信猫,来发送或接收短信。本主题主要关注如何使用Visual Studio 2005(VS2005)和C#语言来通过短信猫进行短信的发送操作。短信猫是一种USB或串口设备,...
当用户点击发送按钮时,程序会调用相应的函数,将短信内容和接收方电话号码打包成符合GSM 03.38标准的数据包,然后通过串行端口或USB接口发送到短信猫设备。设备再将数据包通过移动网络发送到目标手机。 【标签】:...
利用 CMPP/SGIP 协议发送长短信...此外,凌凯短信平台还支持多网关自动切换,移动、电信、联通等通道自动切换,最大程度的解决端口拥堵现象,保证信息及时送出;以及多通道自动补发,保证每条信息的快速、准确到达。
当通过程序控制短信发送时,要注意隐私和安全问题。确保只有授权的用户才能访问短信猫,并且在传输敏感信息时采取加密措施。 以上就是使用Java代码实现短信猫发送短信涉及的主要技术点和注意事项。实际操作时,...