public class SocketCloseUtil { public static void closeAll(Socket socket, InputStream input, OutputStream output){ close(input); close(output); close(socket); } //input public static void close(InputStream input) { if (input != null) { try { input.close(); } catch (IOException e) { log(e.getMes..