Monday, May 3, 2010

Q: Write a program that brings the address and the name of the local machine.

import java.net.*;

class ab

{

public static void main(String args[]) throws UnknownHostException

{

InetAddress ad = InetAddress.getLocalHost();

System.out.println(ad);

}

}

No comments:

Post a Comment