MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.net.*;

public class MainClass {

    public static void main(String[] args) {

        try {
            InetAddress[] addresses = InetAddress.getAllByName("www.google.com");
            for (int i = 0; i < addresses.length; i++) {
                System.out.println(addresses[i]);
            }
        } catch (UnknownHostException e) {
            System.out.println("Could not find www.apple.com");
        }

    }

}