In Inet Address class, which method returns the host name of the IP Address? *2 pointsPublic String get Hostname()Public static InetAddress get Localhost()Public String getHostAddress()Public getByName( code example

Example: InetAddress

System.out.print("Insert HostName: ");
        Scanner input=new Scanner(System.in);
        String host=input.nextLine();
        try{
            InetAddress ip=InetAddress.getByName(host);
            System.out.println(ip);
            if(ip.isReachable(50)){
                System.out.println("Destination Reached");
            }
            else{
                System.out.println("Destination Unreachable");
            }
        }
        catch (Exception e){
            System.out.println("Invalid domain");
        }

Tags:

Java Example