package primer1;

import java.net.*;
import java.util.Arrays;

public class OReillyByName {

	public static void main(String[] args) {

		try {
			InetAddress address = InetAddress.getByName("www.oreilly.com");
			System.out.println(address);
		} catch (UnknownHostException ex) {
			System.out.println("Could not find www.oreilly.com");
		}

		System.out.println();

		try {
			InetAddress address = InetAddress.getByName("www.v6.facebook.com");
			System.out.println(address);

			// ispis niza svih IPv6 adresa za facebook:
			System.out.println(Arrays.toString(InetAddress.getAllByName("www.v6.facebook.com")));
		} catch (UnknownHostException ex) {
			System.out.println("Could not find www.v6.facebook.com");
		}

		System.out.println();

		try {
			InetAddress address = InetAddress.getByName("ipv6.google.com");
			System.out.println(address);

			// ispis niza svih IPv6 adresa za google:
			System.out.println(Arrays.toString(InetAddress.getAllByName("ipv6.google.com")));
		} catch (UnknownHostException ex) {
			System.out.println("ipv6.google.com");
		}

		System.out.println();

		try {
			InetAddress address = InetAddress.getByName("208.201.239.101");

			System.out.println(address);
		} catch (UnknownHostException ex) {
			System.out.println("Could not find oreilly.com");
		}

	}

}
