Skip to content

短信猫mac、linux 驱动及开发

最近因为工作的原因,需要接触到短信猫,在淘宝找了很多,基本上一直,大多数商家都是支持 windows的,但是由于服务器都是centos,所以需要支持linux,而我在mac下开发的,只有到处寻找能支持linux的短信猫了。

最后找了半天,结果发现市场上大多数都是支持的,只是太少的人用linux,所以相关的信息不是很多。

相关的 资料主要在

驱动使用:

http://rxtx.qbang.org/wiki/index.php/Main_Page

驱动安装步骤:

  1. 复制librxtxSerial.so 文件到 ${JAVA_HOME}/jre/lib/amd64/
  2. 复制RXTXcomm.jar 文件到 ${JAVA_HOME}/jre/lib/ext/

开发短信使用的api 使用:

https://github.com/tdelenikas/smslib-v3

需要自己去下载后编译。

 

案例:

package examples.modem;

import org.smslib.IOutboundMessageNotification;
import org.smslib.Library;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.modem.SerialModemGateway;

public class SendMessage
{
public void doIt() throws Exception
{
Service srv;
OutboundMessage msg;
OutboundNotification outboundNotification = new OutboundNotification();
System.out.println(“Example: Send message from a serial gsm modem.”);
System.out.println(Library.getLibraryDescription());
System.out.println(“Version: ” + Library.getLibraryVersion());
srv = new Service();
SerialModemGateway gateway = new SerialModemGateway(“modem.com1”, “/dev/ttyUSB0”, 57600, “waveCom”, “null”);
gateway.setInbound(true);
gateway.setOutbound(true);
gateway.setSimPin(“0000”);
srv.setOutboundNotification(outboundNotification);
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();
// Send a message synchronously.
msg = new OutboundMessage(“+306948494037”, “Hello from SMSLib!”);
srv.sendMessage(msg);
System.out.println(msg);
// Or, send out a WAP SI message.
//OutboundWapSIMessage wapMsg = new OutboundWapSIMessage(“+306948494037”, new URL(“https://mail.google.com/”), “Visit GMail now!”);
//srv.sendMessage(wapMsg);
//System.out.println(wapMsg);
// You can also queue some asynchronous messages to see how the callbacks
// are called…
//msg = new OutboundMessage(“+309999999999”, “Wrong number!”);
//msg.setPriority(OutboundMessage.Priorities.LOW);
//srv.queueMessage(msg, gateway.getGatewayId());
//msg = new OutboundMessage(“+308888888888”, “Wrong number!”);
//msg.setPriority(OutboundMessage.Priorities.HIGH);
//srv.queueMessage(msg, gateway.getGatewayId());
System.out.println(“Now Sleeping – Hit <enter> to terminate.”);
System.in.read();
srv.stopService();
}

public class OutboundNotification implements IOutboundMessageNotification
{
public void process(String gatewayId, OutboundMessage msg)
{
System.out.println(“Outbound handler called from Gateway: ” + gatewayId);
System.out.println(msg);
}
}

public static void main(String args[])
{
SendMessage app = new SendMessage();
try
{
app.doIt();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}

发表评论

电子邮件地址不会被公开。 必填项已用*标注