Add

Java Language - Getting connected to Server

 


Solution

Following example demonstrates how to get connected with web server by using sock.getInetAddress() method of net.Socket class.

import java.net.InetAddress;

import java.net.Socket;

public class WebPing {

   public static void main(String[] args) {

      try {

         InetAddress addr;

         Socket sock = new Socket("www.learnkro.com", 80);

         addr = sock.getInetAddress();

         System.out.println("Connected to " + addr);

         sock.close();

      } catch (java.io.IOException e) {

         System.out.println("Can't connect to " + args[0]);

         System.out.println(e);

      }

   }

}

Result

Connected to www.learnkro.com/69.172.201.153

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.