4

SMSLib を使用して、samsung gsm モデムを使用して SMS を送信しています。20秒ごとにサーバーからメッセージを取得する別のスレッドを作成し、メッセージを取得するとSendMessageを呼び出します.. SendMessageのコードは次のとおりです

public class SendMessage {
public boolean doIt(String num, String umsg) {

    try {
        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());
        SerialModemGateway gateway = new SerialModemGateway("modem.com10","COM10", 115200, "Samsung", "");
        gateway.setInbound(true);
        gateway.setOutbound(true);
        gateway.setSimPin("0000");

        gateway.setSmscNumber("+919826012311");
        Service.getInstance().setOutboundMessageNotification(outboundNotification);
        Service.getInstance().addGateway(gateway);
        Service.getInstance().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()+ " dBm");
        System.out.println("  Battery Level: " + gateway.getBatteryLevel()+ "%");
        System.out.println();

        OutboundMessage msg = new OutboundMessage(num, umsg);
        Service.getInstance().sendMessage(msg);

        System.out.println(msg);

        Service.getInstance().stopService();
        gateway.stopGateway();

        return true;
    } catch (GatewayException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (TimeoutException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (SMSLibException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } finally {

        try {
            Service.getInstance().stopService();
        } catch (TimeoutException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (GatewayException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (SMSLibException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    return false;
}

public class OutboundNotification implements IOutboundMessageNotification {
    public void process(AGateway gateway, OutboundMessage msg) {
        System.out.println("Outbound handler called from Gateway: "
                + gateway.getGatewayId());
        System.out.println(msg);
    }
}

}

このコードは、初めて doIt を呼び出したときにうまく機能しています。しかし、私のスレッドがサーバーからより多くのSMSを取得し、その後 doIt を呼び出すと、例外がスローされます

org.smslib.GatewayException: 通信ライブラリの例外: java.lang.RuntimeException: javax.comm.PortInUseException: 現在 org.smslib で org.smslib.modem.SerialModemDriver.connectPort(SerialModemDriver.java:102) で org.smslib によって所有されているポート.modem.AModemDriver.connect(AModemDriver.java:114) at org.smslib.modem.ModemGateway.startGateway(ModemGateway.java:189) at org.smslib.Service$1Starter.run(Service.java:275)

問題はどこだ ?

4

2 に答える 2

0

例外は、シリアル ポートへの接続が開いたままになっていることを示しているように見えるため、SmsLib を正しく閉じていないようです。

于 2011-09-06T19:07:20.933 に答える
0

わたしにはできる。使用する

Service.getInstance().sendMessages(myList, gateway.getGatewayId()); 

関数 sendmessage mylist.add(msg) を使用する代わりに;

mylist送信メッセージを含むリストです

于 2013-07-03T09:17:34.897 に答える