Can you interrupt BufferedReader.readLine() with Future.cancel(true)?

六眼飞鱼酱① 提交于 2019-12-21 12:56:20

问题


Let's say I started a thread and I have something like this:

 ...//initiate all the socket connection
 future = executor.submit
 (  new Runnable()
    {   public void run()
        {   ...
            ...      
            while ((str = in.readLine()) != null)
            {  //do something here

            }

    }

 );

executor is a ExecutorService object and in is a BufferedReader object

I know you can close the socket from a different thread to interrupt this thread. But when I try to use future.cancel(true) method, even though it returns true, the thread seems still running, anybody know why? or in.readLine() cannot be interrrupted this way?


回答1:


Can you interrupt BufferedReader.readLine() with Future.cancel(true)?

All future.cancel(true) does is to call thread.interrupt() on the associated thread. This will cause sleep() and wait() operations to throw an InterruptedException and will interrupt some special NIO channels.

But chances are your BufferedReader will not be interrupted since it is most likely reading from a "normal" socket or file. As you mention, closing the underlying socket from a different thread is the best way to kill such an IO method.




回答2:


You can close the in stream to trigger an IOException. Otherwise a readLine() can block forever.

I have looked at using JavaLangAccess.blockedOn() but it looks rather low level.




回答3:


readLine does not throw InterruptedException so it will not be affected if the thread it runs in is interrupted. You need to explicitly check the interrupted status of the thread:

        while ((str = in.readLine()) != null)
        {
            if (Thread.interrupted()) {
                //You can deal with the interruption here
            }
        }

But if it blocks while executing readLine , the only way to interrupt it is to close the underlying stream which will throw an IOException.



来源:https://stackoverflow.com/questions/9979485/can-you-interrupt-bufferedreader-readline-with-future-canceltrue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!