Java API Tutorial - Java HttpURLConnection .getRequestMethod ()








Syntax

HttpURLConnection.getRequestMethod() has the following syntax.

public String getRequestMethod()

Example

In the following code shows how to use HttpURLConnection.getRequestMethod() method.

/*www .  j  a v  a 2s. c  o m*/
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Date;

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

    System.out.println("Request method is " + httpCon.getRequestMethod());

 }
}

    

The code above generates the following result.