Get InputStream and OutputStream from Socket : Socket « Network « Java Tutorial






import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;

public class MainClass {

  public static void main(String[] args) {

    try {
      Socket s = new Socket("127.0.0.1", 80);
      OutputStream out = s.getOutputStream();
      out.close();
      InputStream in = s.getInputStream();

    } catch (IOException e) {
      System.err.println(e);
    }

  }

}








19.9.Socket
19.9.1.java.net.Socket
19.9.2.Create a socket
19.9.3.Create Socket by IP address and port number
19.9.4.Display Socket InetAddress, Port, LocalPort and Local address
19.9.5.Socket Info
19.9.6.Get InputStream and OutputStream from Socket
19.9.7.Read float number from a Socket
19.9.8.Read Object from Socket
19.9.9.A Thin SMTP Client
19.9.10.Get internet address from connected socket client
19.9.11.Transfer a file via Socket
19.9.12.Cipher Socket