HttpURLConnection: getHeaderFields()
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));
}
}
Home
Java Book
Networking
Java Book
Networking
HttpURLConnection:
- HttpURLConnection
- HttpURLConnection.HTTP_OK
- HttpURLConnection: getContentLength()
- HttpURLConnection: getContentType()
- HttpURLConnection: getDate()
- HttpURLConnection: getExpiration()
- HttpURLConnection: getHeaderFields()
- HttpURLConnection: getInputStream()
- HttpURLConnection: getLastModified()
- HttpURLConnection: getRequestMethod
- HttpURLConnection: getResponseCode()
- HttpURLConnection: getResponseMessage()
- HttpURLConnection: setInstanceFollowRedirects(boolean followRedirects)
- HttpURLConnection: setRequestMethod(String method) throws ProtocolException
- HttpsURLConnection: getDefaultSSLSocketFactory()