一段时间后,TCP套接字在Android服务中无法接收

时间:2013-07-23 22:32:16

标签: android sockets service tcp

我的服务从DSL路由器“FRITZ!Box”接收电话呼叫信息。当有人呼叫时,路由器将电话号码发送到我的服务端口1012。 它有效,但过了一段时间我的服务不再收到。 该服务正在运行,这不是原因,但它从我的路由器中读取的内容。 没有异常被抛出,服务保持在循环...

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();
    }


}

1 个答案:

答案 0 :(得分:0)

所以看起来一旦你的路由器停止发送数据,循环就会结束,你的处理程序会退出handleMessage。此时,您需要向处理程序发送另一条消息,以便连接并再次开始读取数据。

此问题看起来可能类似,并且在使用readline通过套接字读取数据时处理问题。 Android TCP app hanging on inStream.readline()

希望有所帮助。