Example usage for java.net URLConnection getRequestProperties

List of usage examples for java.net URLConnection getRequestProperties

Introduction

In this page you can find the example usage for java.net URLConnection getRequestProperties.

Prototype

public Map<String, List<String>> getRequestProperties() 

Source Link

Document

Returns an unmodifiable Map of general request properties for this connection.

Usage

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());
}