Display header information : HttpURLConnection « Network Protocol « Java






Display header information

    


import java.net.HttpURLConnection;
import java.net.URL;
import java.util.List;
import java.util.Map;
import java.util.Set;

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

    Map<String, List<String>> hdrs = httpCon.getHeaderFields();
    Set<String> hdrKeys = hdrs.keySet();

    for (String k : hdrKeys)
      System.out.println("Key: " + k + "  Value: " + hdrs.get(k));

 }
}

   
    
    
    
  








Related examples in the same category

1.Get the date of a url connection
2.Get the document expiration date
3.Get the document Last-modified date
4.Show the content type
5.Show the content length
6.Display request method
7.Get response code
8.Display response message
9.Download and display the content
10.A Web Page Source Viewer
11.Reading from a URLConnection
12.Use BufferedReader to read content from a URL
13.Check if a page exists
14.Identify ourself to a proxy
15.Connect through a Proxy
16.Preventing Automatic Redirects in a HTTP Connection
17.Converting x-www-form-urlencoded Data
18.Getting the Cookies from an HTTP Connection
19.Sending a Cookie to an HTTP Server
20.Getting the Response Headers from an HTTP Connection
21.java.net.Authenticator can be used to send the credentials when needed
22.Grabbing a page using socket
23.Http Header Helper
24.Http connection Utilities
25.Available Port Finder