Exp10 st1

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Exp10_St1:

import java.net.*;
class Exp10_StudAct1
{
public static void main(String args[]) throws UnknownHostException
{
InetAddress address = InetAddress.getLocalHost();
System.out.println(address.getAddress());
System.out.println(address.getHostAddress());
System.out.println(address.getHostName());
System.out.println(address.isMulticastAddress());
System.out.println(address.toString());
}
}

Output:

You might also like