public interface Channel extends Closeable
信道表示与诸如硬件设备,文件,网络套接字或能够执行一个或多个不同I / O操作(例如读取或写入)的程序组件的实体的开放连接。
通道是打开的还是关闭的。 一个通道在创建时打开,一旦关闭,它仍然关闭。 一旦通道关闭,任何尝试调用I / O操作将导致抛出ClosedChannelException
。 频道是否打开可以通过调用其isOpen
方法进行测试。
一般来说,通道旨在为多线程访问安全,如扩展和实现此接口的接口和类的规范中所述。
boolean isOpen()
void close() throws IOException
通道关闭后,进一步尝试调用I / O操作将导致抛出ClosedChannelException
。
如果此通道已经关闭,则调用此方法不起作用。
可以随时调用此方法。 然而,如果一些其他线程已经调用了它,那么另一个调用将阻塞,直到第一个调用完成,之后它将不起作用。
close
中的
AutoCloseable
close
在接口
Closeable
IOException
- If an I/O error occurs
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.