Answers for "what use of ip addresses"

0

what use of ip addresses

import java.net.InetAddress;
import java.net.UnknownHostException;
public class FindIPaddress {
	public static void main(String[] args) throws UnknownHostException {
		InetAddress a = InetAddress.getLocalHost();
		System.out.println(a.getHostAddress());	
	}
}
Posted by: Guest on September-30-2020

Code answers related to "what use of ip addresses"

Browse Popular Code Answers by Language