shutdownInput

shutdownInput

public void shutdownInput()
throws IOException
此套接字的输入流置于“流的末尾”。发送到套接字的输入流端的任何数据都将被确认然后被静默丢弃。
如果在套接字上调用 shutdownInput() 后从套接字输入流读取内容,则流将返回 EOF(文件结束符)。
抛出:
IOException - 如果关闭此套接字时发生 I/O 错误。
从以下版本开始:
1.3
另请参见:
shutdownOutput(), close(), setSoLinger(boolean, int), isInputShutdown()
shutdownOutput

public void shutdownOutput()
throws IOException
禁用此套接字的输出流。对于 TCP 套接字,任何以前写入的数据都将被发送,并且后跟 TCP 的正常连接终止序列。 如果在套接字上调用 shutdownOutput() 后写入套接字输出流,则该流将抛出 IOException。
抛出:
IOException - 如果关闭此套接字时发生 I/O 错误。
从以下版本开始:
1.3
另请参见:
shutdownInput(), close(), setSoLinger(boolean, int), isOutputShutdown()

你可能感兴趣的:(IO)