HttpURLConnection: setRequestMethod(String method) throws ProtocolException : HttpURLConnection « java.net « Java by API






HttpURLConnection: setRequestMethod(String method) throws ProtocolException

  

import java.net.HttpURLConnection;
import java.net.URL;

public class Main {
  public static void main(String[] argv) throws Exception {
    HttpURLConnection.setFollowRedirects(false);
    HttpURLConnection con = (HttpURLConnection) new URL("http://www.google.coom").openConnection();
    con.setRequestMethod("HEAD");
    System.out.println(con.getResponseCode() == HttpURLConnection.HTTP_OK);
  }
}

   
    
  








Related examples in the same category

1.HttpURLConnection.HTTP_OK
2.HttpURLConnection: getContentLength()
3.HttpURLConnection: getContentType()
4.HttpURLConnection: getDate()
5.HttpURLConnection: getExpiration()
6.HttpURLConnection: getHeaderFields()
7.HttpURLConnection: getInputStream()
8.HttpURLConnection: getLastModified()
9.HttpURLConnection: getRequestMethod
10.HttpURLConnection: getResponseCode()
11.HttpURLConnection: getResponseMessage()
12.HttpURLConnection: setInstanceFollowRedirects(boolean followRedirects)
13.HttpsURLConnection: getDefaultSSLSocketFactory()