setRequestMethod(String): This method is available in the java.net.HttpURLConnection class of Java.
Syntax:
void java.net.HttpURLConnection.setRequestMethod(String method) throws ProtocolException
This method takes one argument. This method sets the method for the URL request, as one of •GET •POST •HEAD •OPTIONS •PUT •DELETE •TRACE are legal, subject to protocol restrictions.
The default method is GET.
Parameters: One parameter is required for this method.
method: the HTTP method.
Returns: NA
Throws:
1. ProtocolException - if the method cannot be reset or if the requested method isn't valid for HTTP.
2. SecurityException - if a security manager is set and the method is "TRACE", but the "allowHttpTrace" NetPermission is not granted.
Approach 1: When no exception
Java
package com.HttpURLConnection;import java.io.IOException;import java.net.HttpURLConnection;import java.net.URL;public class HttpURLConnectionsetRequestMethod {public static void main(String[] args) throws IOException {URL url =new URL("https://beingcodeexpert.blogspot.com/");HttpURLConnection httpURLConnection =(HttpURLConnection) url.openConnection();String method = "GET";httpURLConnection.setRequestMethod(method);System.out.println("Successfully setRequestMethod");}}
Output:
Successfully setRequestMethod
Approach 2: ProtocolException
Java
package com.HttpURLConnection;import java.io.IOException;import java.net.HttpURLConnection;import java.net.URL;public class HttpURLConnectionsetRequestMethod {public static void main(String[] args) throws IOException {URL url =new URL("https://beingcodeexpert.blogspot.com/");HttpURLConnection httpURLConnection =(HttpURLConnection) url.openConnection();String method = "HELLO";httpURLConnection.setRequestMethod(method);System.out.println("Successfully setRequestMethod");}}
Output:
Exception in thread "main" java.net.ProtocolException: Invalid HTTP method: HELLO at java.base/java.net.HttpURLConnection.setRequestMethod(HttpURLConnection.java:487) at java.base/sun.net.www.protocol.http.HttpURLConnection.setRequestMethod(HttpURLConnection.java:571) at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.setRequestMethod(HttpsURLConnectionImpl.java:344) at com.HttpURLConnection.HttpURLConnectionsetRequestMethod.main(HttpURLConnectionsetRequestMethod.java:13)
Some other methods of HttpURLConnection
HttpURLConnection Status Code: Some of the status codes of HttpURLConnection. example HttpURLConnection.HTTP_ACCEPTED, HttpURLConnection.HTTP_BAD_GATEWAY, etc.
disconnect(): This method indicates that other requests to the server are unlikely in the near future.
getErrorStream(): This method returns the error stream if the connection failed but the server sent useful data nonetheless.
HttpURLConnection.getFollowRedirects(): This method returns a boolean indicating whether or not HTTP redirects (3xx) should be automatically followed.
getHeaderField(int): This method returns the value for the nth header field.
getHeaderFieldDate(String, long): This method Returns the value of the named field parsed as a date. The result is the number of milliseconds since January 1, 1970, GMT represented by the named field.
getHeaderFieldKey(int): This method returns the key for the nth header field.
getInstanceFollowRedirects(): This method returns the value of this HttpURLConnection instanceFollowRedirects field.
getPermission(): This method returns a SocketPermission object representing the permission necessary to connect to the destination host and port.
getRequestMethod(): This method gets the request method.
getResponseCode(): This method gets the status code from an HTTP response message.
getResponseMessage(): This method gets the HTTP response message, if any, returned along with the response code from a server.
setAuthenticator(Authenticator): This method supplies an Authenticator to be used when authentication is requested through the HTTP protocol for this HttpURLConnection.If no authenticator is supplied, the default authenticator will be used.
setChunkedStreamingMode(int): This method is used to enable the streaming of an HTTP request body without internal buffering when the content length is not known in advance.
setFixedLengthStreamingMode(int): This method is used to enable the streaming of an HTTP request body without internal buffering when the content length is known in advance.
setFixedLengthStreamingMode(long): This method is used to enable the streaming of an HTTP request body without internal buffering when the content length is known in advance.
HttpURLConnection.setFollowRedirects(boolean): This method sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this class.
setInstanceFollowRedirects(boolean): This method sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this HttpURLConnection instance.
setRequestMethod(String): This method sets the method for the URL request, as one of •GET •POST •HEAD •OPTIONS •PUT •DELETE •TRACE are legal, subject to protocol restrictions.
usingProxy(): This method indicates if the connection is going through a proxy.
No comments:
Post a Comment