3

携帯電話を GSM モデムとして使用しようとしています。このモデムで SMS を送受信するために SMSLib を使用しています。問題は、私の電話 (GSM モデム) が SMS を受信したときに SMSLib で通知しないことですが、GSM モデムが通話を受信したときに通知するなど、全体的なコードは適切です。メッセージを受信するためにSMSLibのサンプルコードのみを使用しているため、私のコードにはバグはありません。SMSLib のサンプル コードは次のとおりです。

public class TestSinaRec
{
    public void doIt() throws Exception
    {
        // Define a list which will hold the read messages.
        List<InboundMessage> msgList;
        // Create the notification callback method for inbound & status report
        // messages.
        InboundNotification inboundNotification = new InboundNotification();
        // Create the notification callback method for inbound voice calls.
        CallNotification callNotification = new CallNotification();
        //Create the notification callback method for gateway statuses.
        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());
            // Create the Gateway representing the serial GSM modem.
            SerialModemGateway gateway = new SerialModemGateway("modem.com4", "COM4", 115200, "Nokia", " 6303i");
            // Set the modem protocol to PDU (alternative is TEXT). PDU is the default, anyway...
            gateway.setProtocol(Protocols.PDU);
            // Do we want the Gateway to be used for Inbound messages?
            gateway.setInbound(true);
            // Do we want the Gateway to be used for Outbound messages?
            gateway.setOutbound(true);
            // Let SMSLib know which is the SIM PIN.
            gateway.setSimPin("0444");
            // Set up the notification methods.
            Service.getInstance().setInboundMessageNotification(inboundNotification);
            Service.getInstance().setCallNotification(callNotification);
            Service.getInstance().setGatewayStatusNotification(statusNotification);
            Service.getInstance().setOrphanedMessageNotification(orphanedMessageNotification);
            // Add the Gateway to the Service object.
            Service.getInstance().addGateway(gateway);
            // Similarly, you may define as many Gateway objects, representing
            // various GSM modems, add them in the Service object and control all of them.
            // Start! (i.e. connect to all defined Gateways)
            Service.getInstance().startService();
            // Printout some general information about the modem.
            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();
            // In case you work with encrypted messages, its a good time to declare your keys.
            // Create a new AES Key with a known key value. 
            // Register it in KeyManager in order to keep it active. SMSLib will then automatically
            // encrypt / decrypt all messages send to / received from this number.
            //Service.getInstance().getKeyManager().registerKey("+306948494037", new AESKey(new SecretKeySpec("0011223344556677".getBytes(), "AES")));
            // Read Messages. The reading is done via the Service object and
            // affects all Gateway objects defined. This can also be more directed to a specific
            // Gateway - look the JavaDocs for information on the Service method calls.
            msgList = new ArrayList<InboundMessage>();
            Service.getInstance().readMessages(msgList, MessageClasses.ALL);
            for (InboundMessage msg : msgList)
                System.out.println(msg);
            // Sleep now. Emulate real world situation and give a chance to the notifications
            // methods to be called in the event of message or voice call reception.
            System.out.println("Now Sleeping - Hit <enter> to stop service.");
            System.in.read();
            System.in.read();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        finally
        {
            Service.getInstance().stopService();
        }
    }

    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);
            // Since we are just testing, return FALSE and keep the orphaned message part.
            return false;
        }
    }

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

プログラムの出力は、たとえば次のとおりです。

modem.com4 のゲートウェイ ステータス変更、OLD: STOPPED -> NEW: STARTING modem.com4 のゲートウェイ ステータス変更、OLD: STARTING -> NEW: STARTED

モデム情報: メーカー: Nokia モデル: Nokia 6303i クラシック シリアル番号: 35538​​2041051833 SIM IMSI: ** MASKED ** 信号レベル: -57 dBm バッテリー レベル: 91%

Now Sleeping - ヒットしてサービスを停止します。ゲートウェイから検出された新しいコール: modem.com4 : +989111007483 ゲートウェイから検出された新しいコール: modem.com4 : +989111007483

この問題を検索したところ、これが見つかりました:

この方法の正しい操作は、非送信請求モデムの指示と CNMI コマンドの正しい操作に依存します。コールバック メソッドを使用してメッセージを受信できない場合は、モデムの表示が正しく設定されていない可能性があります。

そのため、最初に使用した Nokia 5200 ではなく、Nokia 6303i を使用して電話 (GSM モデム) を変更しましたが、問題は解決しませんでした。だから今、私は本当に別の電話を選ぶことで問題が解決するか分からない?! または、より適切で合理的な解決策を探す必要があります。

この問題を解決するために少しでも助けてくれてありがとう。

4

3 に答える 3

0


私はGT-I9000に問題があり、彼はインバウンドアラートを受信しましたが、正しいSMSオブジェクトを取得できませんでした。これは保存場所の問題だと思います。別の電話(Samsung GT-S5670 Android)で試しました。 SIMカードメモリにいくつかのメッセージを保存していた私の友人、smslibraryに通知され、ReadMessagesクラスがすべてのメッセージをログに記録しました。

だから私はあなたがReadMessages.javaの保存場所を変更するために何らかの方法を見つけるか、電話のメモリの代わりにSimカードにSMSを保存できる互換性のある電話を見つける必要があると思います。

この助けを願っています。

于 2012-12-11T16:16:44.667 に答える
0

問題は私の電話にありました.Smslibは、さまざまな電話(スマートフォン、ほとんどのNokia電話などを含む)のSMSをリッスンする際に機能しません.私は確認しませんでしたが、専用のGSM モデム (huawei GSM モデムなど)

于 2014-07-18T17:20:42.220 に答える
0

私が考えることができる唯一のことは、あなたが を起動してServiceからSMS をモデムに送信しているということです。このため、この行は呼び出されません: Service.getInstance().readMessages(msgList, MessageClasses.ALL);. ただし、新しいメッセージがモデムに到着したという通知は引き続き受け取る必要があります。

InboundNotificationモデムで新しいメッセージを検出したときにメッセージをフェッチするように を実装してみてください。これを行うには、メソッドをオーバーライドしますprocess()

ただし、実際に押すの<Enter>が早すぎることが原因である可能性もあります. コメントが言うように; 通知メソッドが呼び出されるまで待つ必要があります。

時々それはそれと同じくらいばかげたことです。それが役に立ったかどうか、または私があなたの問題を完全に誤解していたかどうかを教えてください。私は自分でマルチモデム ゲートウェイに取り組んでいるので、喜んでお手伝いします。

于 2012-09-12T12:39:52.917 に答える