如图的注释所示。为什么两端做响应的时候不用shutdown?
服务端要
//关闭输入流
socket.shutdownInput();
客户端要
//关闭输出流
socket.shutdownOutput();;
最后都只需socket.close();