Socket: getLocalSocketAddress() : Socket : java.net : Java by API examples (example source code) Organized by topic

Java by API
C++
PHP
Java by API Home »  java.net   » [  Socket  ]   
 



Socket: getLocalSocketAddress()

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

public class MainClass {
  public static void main(String[] argsthrows Exception {
    String serverName = args[0];
    int port = Integer.parseInt(args[1]);

    try {
      System.out.println("Connecting to " + serverName + " on port " + port);
      Socket client = new Socket(serverName, port);

      System.out.println("Just connected to " + client.getRemoteSocketAddress());

      OutputStream outToServer = client.getOutputStream();
      DataOutputStream out = new DataOutputStream(outToServer);
      out.writeUTF("Hello from " + client.getLocalSocketAddress());

      InputStream inFromServer = client.getInputStream();
      DataInputStream in = new DataInputStream(inFromServer);
      System.out.println("Server says " + in.readUTF());

      client.close();
    catch (IOException e) {
      e.printStackTrace();
    }
  }
}

           
       
Related examples in the same category
1.  Socket: getRemoteSocketAddress()
2.  Socket: readUTF() and writeUTF(String str)
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.