List of usage examples for java.net URLConnection getRequestProperties
public Map<String, List<String>> getRequestProperties()
From source file:Main.java
public static void main(String args[]) throws Exception { URL u = new URL("http://www.java2s.com"); URLConnection uc = u.openConnection(); System.out.println(uc.getRequestProperties()); }