Easy Tutorial
❮ Dir Display Method Continue ❯

Java Example - Get URL Response Headers

Java Example

The following example demonstrates how to retrieve the response headers of a specified URL:

Main.java File

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Map;
import java.util.Set;

public class Main {
    public static void main(String[] args) throws IOException {
        URL url = new URL("http://www.tutorialpro.org");
        URLConnection conn = url.openConnection();

        Map headers = conn.getHeaderFields();
        Set<String> keys = headers.keySet();
        for (String key : keys) {
            String val = conn.getHeaderField(key);
            System.out.println(key + "    " + val);
        }
        System.out.println(conn.getLastModified());
    }
}

The above code outputs the following result:

Transfer-Encoding    chunked
null    HTTP/1.1 200 OK
Server    Tengine/1.3.0
Connection    keep-alive
Vary    Cookie
Date    Mon, 04 May 2015 03:54:05 GMT
X-Pingback    http://www.tutorialpro.org/xmlrpc.php
X-Powered-By    PHP/5.3.15
Content-Type    text/html; charset=UTF-8

Java Example

❮ Dir Display Method Continue ❯