简体   繁体   中英

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

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?

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.

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM