|
get local machine name & ip address
/*
*/
jackorta
/*
// Get_localMachine
//
// Displays the IP & hostname of localhost
//
//
*/
import java.io.*;
import java.net.*;
public class Get_localMachine
{
public static void main(String args[])
{
try
{
InetAddress localaddr = InetAddress.getLocalHost();
System.out.println ("Local IP Address : " + localaddr );
System.out.println ("Local hostname : " + localaddr.getHostName());
}
catch (UnknownHostException e)
{
System.err.println ("Can't detect localhost : " + e);
}
}
}
|