In this section we cover and explain Address of a Local Machine in details for freshers and experienced
| previous | Home | Next |
Find the Address of a Local Machine
Example
import java.net.*;
class Myaddress
{
public static void main (String args[]) {
try {
InetAddress add = InetAddress.getLocalHost();
System.out.println(add);
}
catch (UnknownHostException e)
{
System.out.println("Could not find this computer's address.");
}
}
}
| previous | Home | Next |