Here you can find the source of getOutputStream(Socket socket)
public static OutputStream getOutputStream(Socket socket)
//package com.java2s; //License from project: Apache License import java.io.IOException; import java.io.OutputStream; import java.net.Socket; public class Main { public static OutputStream getOutputStream(Socket socket) { // TODO Auto-generated method stub try {/*from www . java 2 s. c o m*/ return socket.getOutputStream(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return null; } }