查看: 7551|回复: 0
打印 上一主题 下一主题

JAVA二次开发包smslib只能发送一条信息,第二条失败问题

[复制链接]
跳转到指定楼层
楼主
发表于 2014-12-16 16:42:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
网站复制来的一个关于java二次源码开发包出现的问题文章,解决提示等问题的错误其中的一个可能的方法:
,javax.comm.PortInUseException: Port currently owned by org.smslib
org.smslib.TimeoutException: No response from device


前些天在弄短信收发还设备时出现一种情况,即只能发送一条信息,再次发送时就报端口占用错误。我用的是官方提供的代码 如下:

  1. public void doIt() throws Exception
  2.      {
  3.           Service srv;
  4.           OutboundMessage msg;
  5.           OutboundNotification outboundNotification = new OutboundNotification();
  6.           System.out.println("Example: Send message from a serial gsm modem.");
  7.           System.out.println(Library.getLibraryDescription());
  8.           System.out.println("Version: " + Library.getLibraryVersion());
  9.           srv = new Service();
  10.          
  11.           SerialModemGateway gateway = new SerialModemGateway("modem.com1", "COM1", 115200, "wavecom", "17254");//115200是波特率,一般为9600。可以通过超级终端测试出来
  12.           gateway.setInbound(true);
  13.           gateway.setOutbound(true);
  14.           gateway.setSimPin("0000");
  15.           gateway.setOutboundNotification(outboundNotification);
  16.           srv.addGateway(gateway);
  17.           srv.startService();
  18.           System.out.println("Modem Information:");
  19.           System.out.println("  Manufacturer: " + gateway.getManufacturer());
  20.           System.out.println("  Model: " + gateway.getModel());
  21.           System.out.println("  Serial No: " + gateway.getSerialNo());
  22.           System.out.println("  SIM IMSI: " + gateway.getImsi());
  23.           System.out.println("  Signal Level: " + gateway.getSignalLevel() + "%");
  24.           System.out.println("  Battery Level: " + gateway.getBatteryLevel() + "%");
  25.           System.out.println();
  26.           // Send a message synchronously.
  27.          
  28.           msg = new OutboundMessage("13152195134", "这个是用java发的中文短信!");
  29.           msg.setEncoding(MessageEncodings.ENCUCS2);//这句话是发中文短信必须的
  30.           srv.sendMessage(msg);
  31.           System.out.println(msg);
  32.           System.out.println("Now Sleeping - Hit <enter> to terminate.");
  33.           System.in.read();
  34.           srv.stopService();
  35.      }
复制代码

我的程序中把这个方法放到servlet中,每次点击页面按钮时调用这个方法。但第二次点击时就报端口被占用的错误。开始认为是端口没有关闭,但后面加上removeGateway(gateway)或gateway.stopGateway()都不行。
最后一想:短信收发设备接上电脑即建立了连接,执行srv.startService()相当于保持一个长连接,不能用程序断开!最后把srv设为静态属性,每次点击按钮只调用 srv.sendMessage(msg)方法,就实现连续发送短信了。
修改后代码如下:

  1. public static Service srv;
  2.        static {
  3.              try {
  4.                    init();
  5.             } catch (Exception e) {
  6.                    // TODO Auto-generated catch block
  7.                   e.printStackTrace();
  8.             }
  9.       }
  10.        public static void init() throws Exception{
  11.             OutboundNotification outboundNotification = new OutboundNotification();
  12.             System. out .println("Example: Send message from a serial gsm modem.");
  13.             System. out .println(System.getProperty( "java.version" ));
  14.             System. out .println(Library.getLibraryDescription());
  15.             System. out .println("Version: " + Library.getLibraryVersion());
  16.              srv = new Service();
  17.             SerialModemGateway gateway = new SerialModemGateway("modem.com4" ,
  18.                          "COM3" , 9600, "wavecom" , "17254" );// 115200是波特率,一般为9600。可以通过超级终端测试出来
  19.             gateway.setInbound( true );
  20.             gateway.setOutbound( true );
  21.             gateway.setOutboundNotification(outboundNotification);
  22.              srv .addGateway(gateway);
  23.              srv .startService();
  24.             System. out .println("Modem Information:" );
  25.             System. out .println("  Manufacturer: " + gateway.getManufacturer());
  26.             System. out .println("  Model: " + gateway.getModel());
  27.             System. out .println("  Serial No: " + gateway.getSerialNo());
  28.             System. out .println("  SIM IMSI: " + gateway.getImsi());
  29.             System. out .println("  Signal Level: " + gateway.getSignalLevel() + "%" );
  30.             System. out .println("  Battery Level: " + gateway.getBatteryLevel()
  31.                         + "%" );
  32.             System. out .println();
  33.       }
  34.       
  35.        public void doIt(String PhoneNum, String Mesg) throws Exception {
  36.             OutboundMessage msg;
  37.             msg = new OutboundMessage(PhoneNum, Mesg);
  38.             msg.setEncoding(MessageEncodings. ENCUCS2 );// 这句话是发中文短信必须的
  39.              srv .sendMessage(msg);
  40.             System. out .println(msg);
  41.             System. out .println("send message success!stopService." );
  42.       }
复制代码



分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|小黑屋|未来时代科技 ( 粤ICP备12044031号-1

GMT+8, 2024-11-23 01:30 , Processed in 0.069771 second(s), 32 queries .

Powered by WLSD X3.1

© 2013-2014 WLSD Inc.

快速回复 返回顶部 返回列表
 
【电话】(15118131494)
【QQ】 未来时代科技01 售前咨询
【QQ】 未来时代科技02 售后技术
【旺旺】 请问有什么可以帮到您?不在线可留言.
【邮箱】
inextera@sina.com
【地址】 (深圳市龙岗坂田扬马小区)