HttpsURLConnection
public abstract class HttpURLConnection extends URLConnection
Each HttpURLConnection instance is used to make a single request but the underlying network connection to the HTTP server may be transparently shared by other instances. Calling the close() methods on the InputStream or OutputStream of an HttpURLConnection after a request may free network resources associated with this instance but has no effect on any shared persistent connection. Calling the disconnect() method may close the underlying socket if a persistent connection is otherwise idle at that time.
The HTTP protocol handler has a few settings that can be accessed through System Properties. This covers Proxy settings as well as various other settings.
Security permissions
If a security manager is installed, and if a method is called which results in an attempt to open a connection, the caller must possess either:
SocketPermission
to the host/port combination of the destination URL orURLPermission
that permits this request.If automatic redirection is enabled, and this request is redirected to another destination, then the caller must also have permission to connect to the redirected host/URL.
Modifier and Type | Field | Description |
---|---|---|
protected int |
chunkLength |
The chunk-length when using chunked encoding streaming mode for output. |
protected int |
fixedContentLength |
The fixed content-length when using fixed-length streaming mode. |
protected long |
fixedContentLengthLong |
The fixed content-length when using fixed-length streaming mode. |
static final int |
HTTP_ACCEPTED |
HTTP Status-Code 202: Accepted. |
static final int |
HTTP_BAD_GATEWAY |
HTTP Status-Code 502: Bad Gateway. |
static final int |
HTTP_BAD_METHOD |
HTTP Status-Code 405: Method Not Allowed. |
static final int |
HTTP_BAD_REQUEST |
HTTP Status-Code 400: Bad Request. |
static final int |
HTTP_CLIENT_TIMEOUT |
HTTP Status-Code 408: Request Time-Out. |
static final int |
HTTP_CONFLICT |
HTTP Status-Code 409: Conflict. |
static final int |
HTTP_CREATED |
HTTP Status-Code 201: Created. |
static final int |
HTTP_ENTITY_TOO_LARGE |
HTTP Status-Code 413: Request Entity Too Large. |
static final int |
HTTP_FORBIDDEN |
HTTP Status-Code 403: Forbidden. |
static final int |
HTTP_GATEWAY_TIMEOUT |
HTTP Status-Code 504: Gateway Timeout. |
static final int |
HTTP_GONE |
HTTP Status-Code 410: Gone. |
static final int |
HTTP_INTERNAL_ERROR |
HTTP Status-Code 500: Internal Server Error. |
static final int |
HTTP_LENGTH_REQUIRED |
HTTP Status-Code 411: Length Required. |
static final int |
HTTP_MOVED_PERM |
HTTP Status-Code 301: Moved Permanently. |
static final int |
HTTP_MOVED_TEMP |
HTTP Status-Code 302: Temporary Redirect. |
static final int |
HTTP_MULT_CHOICE |
HTTP Status-Code 300: Multiple Choices. |
static final int |
HTTP_NO_CONTENT |
HTTP Status-Code 204: No Content. |
static final int |
HTTP_NOT_ACCEPTABLE |
HTTP Status-Code 406: Not Acceptable. |
static final int |
HTTP_NOT_AUTHORITATIVE |
HTTP Status-Code 203: Non-Authoritative Information. |
static final int |
HTTP_NOT_FOUND |
HTTP Status-Code 404: Not Found. |
static final int |
HTTP_NOT_IMPLEMENTED |
HTTP Status-Code 501: Not Implemented. |
static final int |
HTTP_NOT_MODIFIED |
HTTP Status-Code 304: Not Modified. |
static final int |
HTTP_OK |
HTTP Status-Code 200: OK. |
static final int |
HTTP_PARTIAL |
HTTP Status-Code 206: Partial Content. |
static final int |
HTTP_PAYMENT_REQUIRED |
HTTP Status-Code 402: Payment Required. |
static final int |
HTTP_PRECON_FAILED |
HTTP Status-Code 412: Precondition Failed. |
static final int |
HTTP_PROXY_AUTH |
HTTP Status-Code 407: Proxy Authentication Required. |
static final int |
HTTP_REQ_TOO_LONG |
HTTP Status-Code 414: Request-URI Too Large. |
static final int |
HTTP_RESET |
HTTP Status-Code 205: Reset Content. |
static final int |
HTTP_SEE_OTHER |
HTTP Status-Code 303: See Other. |
static final int |
HTTP_SERVER_ERROR |
Deprecated. it is misplaced and shouldn't have existed. |
static final int |
HTTP_UNAUTHORIZED |
HTTP Status-Code 401: Unauthorized. |
static final int |
HTTP_UNAVAILABLE |
HTTP Status-Code 503: Service Unavailable. |
static final int |
HTTP_UNSUPPORTED_TYPE |
HTTP Status-Code 415: Unsupported Media Type. |
static final int |
HTTP_USE_PROXY |
HTTP Status-Code 305: Use Proxy. |
static final int |
HTTP_VERSION |
HTTP Status-Code 505: HTTP Version Not Supported. |
protected boolean |
instanceFollowRedirects |
If true , the protocol will automatically follow redirects. |
protected String |
method |
The HTTP method (GET,POST,PUT,etc.). |
protected int |
responseCode |
An int representing the three digit HTTP Status-Code. |
protected String |
responseMessage |
The HTTP response message. |
allowUserInteraction, connected, doInput, doOutput, ifModifiedSince, url, useCaches
Modifier | Constructor | Description |
---|---|---|
protected |
Constructor for the HttpURLConnection. |
Modifier and Type | Method | Description |
---|---|---|
abstract void |
disconnect() |
Indicates that other requests to the server are unlikely in the near future. |
InputStream |
getErrorStream() |
Returns the error stream if the connection failed but the server sent useful data nonetheless. |
static boolean |
getFollowRedirects() |
Returns a boolean indicating whether or not HTTP redirects (3xx) should be automatically followed. |
String |
getHeaderField |
Returns the value for the n th header field. |
String |
getHeaderFieldKey |
Returns the key for the n th header field. |
boolean |
getInstanceFollowRedirects() |
Returns the value of this HttpURLConnection 's instanceFollowRedirects field. |
Permission |
getPermission() |
Returns a SocketPermission object representing the permission necessary to connect to the destination host and port. |
String |
getRequestMethod() |
Get the request method. |
int |
getResponseCode() |
Gets the status code from an HTTP response message. |
String |
getResponseMessage() |
Gets the HTTP response message, if any, returned along with the response code from a server. |
void |
setAuthenticator |
Supplies an Authenticator to be used when authentication is requested through the HTTP protocol for this HttpURLConnection . |
void |
setChunkedStreamingMode |
This method is used to enable streaming of a HTTP request body without internal buffering, when the content length is not known in advance. |
void |
setFixedLengthStreamingMode |
This method is used to enable streaming of a HTTP request body without internal buffering, when the content length is known in advance. |
void |
setFixedLengthStreamingMode |
This method is used to enable streaming of a HTTP request body without internal buffering, when the content length is known in advance. |
static void |
setFollowRedirects |
Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this class. |
void |
setInstanceFollowRedirects |
Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this HttpURLConnection instance. |
void |
setRequestMethod |
Set the method for the URL request, one of: GET POST HEAD OPTIONS PUT DELETE TRACE are legal, subject to protocol restrictions. |
abstract boolean |
usingProxy() |
Indicates if the connection is going through a proxy. |
addRequestProperty, connect, getAllowUserInteraction, getConnectTimeout, getContent, getContent, getContentEncoding, getContentLength, getContentLengthLong, getContentType, getDate, getDefaultAllowUserInteraction, getDefaultRequestProperty, getDefaultUseCaches, getDefaultUseCaches, getDoInput, getDoOutput, getExpiration, getFileNameMap, getHeaderField, getHeaderFieldDate, getHeaderFieldInt, getHeaderFieldLong, getHeaderFields, getIfModifiedSince, getInputStream, getLastModified, getOutputStream, getReadTimeout, getRequestProperties, getRequestProperty, getURL, getUseCaches, guessContentTypeFromName, guessContentTypeFromStream, setAllowUserInteraction, setConnectTimeout, setContentHandlerFactory, setDefaultAllowUserInteraction, setDefaultRequestProperty, setDefaultUseCaches, setDefaultUseCaches, setDoInput, setDoOutput, setFileNameMap, setIfModifiedSince, setReadTimeout, setRequestProperty, setUseCaches, toString
protected String method
protected int chunkLength
-1
means chunked encoding is disabled for output.protected int fixedContentLength
-1
means fixed-length streaming mode is disabled for output. NOTE: fixedContentLengthLong
is recommended instead of this field, as it allows larger content lengths to be set.
protected long fixedContentLengthLong
-1
means fixed-length streaming mode is disabled for output.protected int responseCode
int
representing the three digit HTTP Status-Code. protected String responseMessage
protected boolean instanceFollowRedirects
true
, the protocol will automatically follow redirects. If false
, the protocol will not automatically follow redirects. This field is set by the setInstanceFollowRedirects
method. Its value is returned by the getInstanceFollowRedirects
method.
Its default value is based on the value of the static followRedirects at HttpURLConnection construction time.
public static final int HTTP_OK
public static final int HTTP_CREATED
public static final int HTTP_ACCEPTED
public static final int HTTP_NOT_AUTHORITATIVE
public static final int HTTP_NO_CONTENT
public static final int HTTP_RESET
public static final int HTTP_PARTIAL
public static final int HTTP_MULT_CHOICE
public static final int HTTP_MOVED_PERM
public static final int HTTP_MOVED_TEMP
public static final int HTTP_SEE_OTHER
public static final int HTTP_NOT_MODIFIED
public static final int HTTP_USE_PROXY
public static final int HTTP_BAD_REQUEST
public static final int HTTP_UNAUTHORIZED
public static final int HTTP_PAYMENT_REQUIRED
public static final int HTTP_FORBIDDEN
public static final int HTTP_NOT_FOUND
public static final int HTTP_BAD_METHOD
public static final int HTTP_NOT_ACCEPTABLE
public static final int HTTP_PROXY_AUTH
public static final int HTTP_CLIENT_TIMEOUT
public static final int HTTP_CONFLICT
public static final int HTTP_GONE
public static final int HTTP_LENGTH_REQUIRED
public static final int HTTP_PRECON_FAILED
public static final int HTTP_ENTITY_TOO_LARGE
public static final int HTTP_REQ_TOO_LONG
public static final int HTTP_UNSUPPORTED_TYPE
@Deprecated public static final int HTTP_SERVER_ERROR
public static final int HTTP_INTERNAL_ERROR
public static final int HTTP_NOT_IMPLEMENTED
public static final int HTTP_BAD_GATEWAY
public static final int HTTP_UNAVAILABLE
public static final int HTTP_GATEWAY_TIMEOUT
public static final int HTTP_VERSION
protected HttpURLConnection(URL u)
u
- the URLpublic void setAuthenticator(Authenticator auth)
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.UnsupportedOperationException
. Concrete implementations of HttpURLConnection
which support supplying an Authenticator
for a specific HttpURLConnection
instance should override this method to implement a different behavior.HttpURLConnection
instances which share the same Authenticator
instance, and authentication information, if cached, may only be reused for an HttpURLConnection
sharing that same Authenticator
.auth
- The Authenticator
that should be used by this HttpURLConnection
.UnsupportedOperationException
- if setting an Authenticator is not supported by the underlying implementation.IllegalStateException
- if URLConnection is already connected.NullPointerException
- if the supplied auth
is null
.public String getHeaderFieldKey(int n)
n
th header field. Some implementations may treat the 0
th header field as special, i.e. as the status line returned by the HTTP server. In this case, getHeaderField(0)
returns the status line, but getHeaderFieldKey(0)
returns null.getHeaderFieldKey
in class URLConnection
n
- an index, where n >=0
.n
th header field, or null
if the key does not exist.public void setFixedLengthStreamingMode(int contentLength)
An exception will be thrown if the application attempts to write more data than the indicated content-length, or if the application closes the OutputStream before writing the indicated amount.
When output streaming is enabled, authentication and redirection cannot be handled automatically. A HttpRetryException will be thrown when reading the response if authentication or redirection are required. This exception can be queried for the details of the error.
This method must be called before the URLConnection is connected.
NOTE: setFixedLengthStreamingMode(long)
is recommended instead of this method as it allows larger content lengths to be set.
contentLength
- The number of bytes which will be written to the OutputStream.IllegalStateException
- if URLConnection is already connected or if a different streaming mode is already enabled.IllegalArgumentException
- if a content length less than zero is specified.public void setFixedLengthStreamingMode(long contentLength)
An exception will be thrown if the application attempts to write more data than the indicated content-length, or if the application closes the OutputStream before writing the indicated amount.
When output streaming is enabled, authentication and redirection cannot be handled automatically. A HttpRetryException will be thrown when reading the response if authentication or redirection are required. This exception can be queried for the details of the error.
This method must be called before the URLConnection is connected.
The content length set by invoking this method takes precedence over any value set by setFixedLengthStreamingMode(int)
.
contentLength
- The number of bytes which will be written to the OutputStream.IllegalStateException
- if URLConnection is already connected or if a different streaming mode is already enabled.IllegalArgumentException
- if a content length less than zero is specified.public void setChunkedStreamingMode(int chunklen)
When output streaming is enabled, authentication and redirection cannot be handled automatically. A HttpRetryException will be thrown when reading the response if authentication or redirection are required. This exception can be queried for the details of the error.
This method must be called before the URLConnection is connected.
chunklen
- The number of bytes to be written in each chunk, including a chunk size header as a hexadecimal string (minimum of 1 byte), two CRLF's (4 bytes) and a minimum payload length of 1 byte. If chunklen is less than or equal to 5, a higher default value will be used.IllegalStateException
- if URLConnection is already connected or if a different streaming mode is already enabled.public String getHeaderField(int n)
n
th header field. Some implementations may treat the 0
th header field as special, i.e. as the status line returned by the HTTP server. This method can be used in conjunction with the getHeaderFieldKey
method to iterate through all the headers in the message.
getHeaderField
in class URLConnection
n
- an index, where n>=0
.n
th header field, or null
if the value does not exist.public static void setFollowRedirects(boolean set)
If there is a security manager, this method first calls the security manager's checkSetFactory
method to ensure the operation is allowed. This could result in a SecurityException.
set
- a boolean
indicating whether or not to follow HTTP redirects.SecurityException
- if a security manager exists and its checkSetFactory
method doesn't allow the operation.public static boolean getFollowRedirects()
boolean
indicating whether or not HTTP redirects (3xx) should be automatically followed.true
if HTTP redirects should be automatically followed, false
if not.public void setInstanceFollowRedirects(boolean followRedirects)
HttpURLConnection
instance. The default value comes from followRedirects, which defaults to true.
followRedirects
- a boolean
indicating whether or not to follow HTTP redirects.public boolean getInstanceFollowRedirects()
HttpURLConnection
's instanceFollowRedirects
field.HttpURLConnection
's instanceFollowRedirects
field.public void setRequestMethod(String method) throws ProtocolException
method
- the HTTP methodProtocolException
- if the method cannot be reset or if the requested method isn't valid for HTTP.SecurityException
- if a security manager is set and the method is "TRACE", but the "allowHttpTrace" NetPermission is not granted.public String getRequestMethod()
public int getResponseCode() throws IOException
HTTP/1.0 200 OK HTTP/1.0 401 UnauthorizedIt will return 200 and 401 respectively. Returns -1 if no code can be discerned from the response (i.e., the response is not valid HTTP).
IOException
- if an error occurred connecting to the server.public String getResponseMessage() throws IOException
HTTP/1.0 200 OK HTTP/1.0 404 Not FoundExtracts the Strings "OK" and "Not Found" respectively. Returns null if none could be discerned from the responses (the result was not valid HTTP).
null
IOException
- if an error occurred connecting to the server.public abstract void disconnect()
public abstract boolean usingProxy()
true
if the connection is known to be going or has gone through proxies, and returns false
if the connection will never go through a proxy or if the use of a proxy cannot be determined.public Permission getPermission() throws IOException
SocketPermission
object representing the permission necessary to connect to the destination host and port.getPermission
in class URLConnection
SocketPermission
object representing the permission necessary to connect to the destination host and port.IOException
- if an error occurs while computing the permission.public InputStream getErrorStream()
This method will not cause a connection to be initiated. If the connection was not connected, or if the server did not have an error while connecting or if the server had an error but no error data was sent, this method will return null. This is the default.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/net/HttpURLConnection.html