package com.eshroe.sweetop.concurrency; import java.io.IOException; import java.net.InetSocketAddress; import java.net.ServerSocket; import java.nio.ByteBuffer; import java.nio.channels.AsynchronousCloseException; import java.nio.channels.ClosedByInterruptException; import java.nio.channels.SocketChannel; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; class NIOBlocked implements Runnable { private final SocketChannel sc; public NIOBlocked(SocketChannel sc) { this.sc = sc; } public void run() { System.out.println("waiting for read() in: "+this); try { sc.read(ByteBuffer.allocate(1)); }catch(ClosedByInterruptException e){ System.out.println("ClosedByInterruptException"); }catch(AsynchronousCloseException e){ System.out.println("AsynchronousCloseException"); }catch (IOException e) { e.printStackTrace(); } System.out.println("Exiting NIOBlocked run() "+this); } } public class NIOInterruption { public static void main(String[] args) throws Exception { ExecutorService exec=Executors.newCachedThreadPool(); ServerSocket server=new ServerSocket(8080); InetSocketAddress isa=new InetSocketAddress("localhost",8080); SocketChannel sc1=SocketChannel.open(isa); SocketChannel sc2=SocketChannel.open(isa); Future<?> f=exec.submit(new NIOBlocked(sc1)); exec.execute(new NIOBlocked(sc2)); exec.shutdown(); TimeUnit.SECONDS.sleep(1); f.cancel(true); TimeUnit.SECONDS.sleep(1); sc2.close(); } }
输出结果:
waiting for read() in: com.eshroe.sweetop.concurrency.NIOBlocked@cd2c3c
waiting for read() in: com.eshroe.sweetop.concurrency.NIOBlocked@a97b0b
ClosedByInterruptException
Exiting NIOBlocked run() com.eshroe.sweetop.concurrency.NIOBlocked@cd2c3c
AsynchronousCloseException
Exiting NIOBlocked run() com.eshroe.sweetop.concurrency.NIOBlocked@a97b0b