Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.net.URL;
import java.net.URLConnection;

public class Main {
    public static void main(String args[]) throws Exception {
        URL url = new URL("http://www.google.com");
        URLConnection httpCon = (URLConnection) url.openConnection();

        long s = httpCon.getHeaderFieldDate("Date", 10000);
        System.out.println(s);

    }
}