1

当サービスは、DSLルーター「FRITZ!Box」からの着信情報を受信します。誰かが電話をかけると、ルーターはポート 1012 で電話番号をサービスに送信します。これは機能しますが、しばらくするとサービスが受信しなくなります。サービスは実行されていますが、それが理由ではありませんが、ルーターから何も読み取っていません。例外はスローされず、サービスは while ループのままです...

public class CallMonitorService extends Service {

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {

    Notification notification = new Notification(icon, "service", System.currentTimeMillis());
        Intent notificationIntent = new Intent(this, Main.class);
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
        notification.setLatestEventInfo(this, "title", "text", pendingIntent);
        notification.flags |= Notification.FLAG_NO_CLEAR;
        startForeground(1337, notification);

        new ListenThread().start();
    }
}

class ListenThread extends Thread {

    public void run() {

        Looper.prepare();

        Handler handler = new Handler() {

            public void handleMessage(Message msg) {

                BufferedReader in = null;

                Socket socket = new Socket();
                socket.setKeepAlive(true);
                socket.connect(new InetSocketAddress(InetAddress.getByName("http://fritz.box"), 1012), 30*1000);
                in = new BufferedReader(new InputStreamReader(socket.getInputStream()), 8 * 1024);

                String line = null;

                while ((line = in.readLine()) != null) {
                    Log.d("TAG", line);
                }


            }
        };


        handler.sendEmptyMessage(0);
        Looper.loop();
    }


}
4

1 に答える 1