SMSLib的开发与配置

在MyEclipse里

用java实现短信收发的功能,目前一般项目中短信群发功能的实现方法大致有下面三种:

    1、 向运行商申请短信网关,不需要额外的设备,利用运行商提供的API调用程序发送短信,适用于大型的通信公司。
    2、 借助像GSM MODEM之类的设备(支持AT指令的手机也行),通过数据线连接电脑来发送短信,这种方法比较适用于小公司及个人。要实现这种方式必须理解串口通信、AT指令、短信编码、解码。
    3、 借助第三方运行的网站实现,由网站代发短信数据,这种方法对网站依赖性太高,对网络的要求也比较高。

有关Java串口通信需要补充说明:

    window系统可以用SUN Java Comm v2. (该版本好像也支持solaris)
             其下载地址:http://smslib.googlecode.com/files/javacomm20-win32.zip
    其他操作系统(比如:Linux, Unix, BSD,等等),你可以选择 Java Comm v3 或者是RxTx。
             Java Comm v3下载地址:http://java.sun.com/products/javacomm/(需要注册);
             RxTx官网:http://users.frii.com/jarvi/rxtx/index.html or http://rxtx.qbang.org/wiki/index.php/Main_Page


1. slf4j-api-1.5.2.jar
   slf4j-api-1.5.2-sources.jar
   slf4j-nop-1.5.2.jar
   comm.jar
   smsserver-3.4.1.jar
   smslib-3.4.1.jar
   将上述6个jar包拷贝到lib下
2.

在Windows环境下使用SMSLib编程的时候,我们需要做一下comm的配置:
1. 将win32com.dll放置在%JAVA_HOME%/jre/bin下
2. 将comm.jar放置在%JAVA_HOME%/jre/lib/ext下
3. 将javax.comm.properties放置在%JAVA_HOME%/jar/lib下
再试试SMSLib自带的examples,看看效果。

3. pci接口安装drive

程序测试用例:
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", "COM1", 57600, "Nokia", "6310i");
  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();
  }
 }
}

你可能感兴趣的:(短信猫,SMSLib)