| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.net.URLConnection
java.net.HttpURLConnection
public abstract class HttpURLConnection
A URLConnection with support for HTTP-specific features. See the spec for details.
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.
disconnect()| Field Summary | |
|---|---|
| protected  int | chunkLengthThe chunk-length when using chunked encoding streaming mode for output. | 
| protected  int | fixedContentLengthThe fixed content-length when using fixed-length streaming mode. | 
| static int | HTTP_ACCEPTEDHTTP Status-Code 202: Accepted. | 
| static int | HTTP_BAD_GATEWAYHTTP Status-Code 502: Bad Gateway. | 
| static int | HTTP_BAD_METHODHTTP Status-Code 405: Method Not Allowed. | 
| static int | HTTP_BAD_REQUESTHTTP Status-Code 400: Bad Request. | 
| static int | HTTP_CLIENT_TIMEOUTHTTP Status-Code 408: Request Time-Out. | 
| static int | HTTP_CONFLICTHTTP Status-Code 409: Conflict. | 
| static int | HTTP_CREATEDHTTP Status-Code 201: Created. | 
| static int | HTTP_ENTITY_TOO_LARGEHTTP Status-Code 413: Request Entity Too Large. | 
| static int | HTTP_FORBIDDENHTTP Status-Code 403: Forbidden. | 
| static int | HTTP_GATEWAY_TIMEOUTHTTP Status-Code 504: Gateway Timeout. | 
| static int | HTTP_GONEHTTP Status-Code 410: Gone. | 
| static int | HTTP_INTERNAL_ERRORHTTP Status-Code 500: Internal Server Error. | 
| static int | HTTP_LENGTH_REQUIREDHTTP Status-Code 411: Length Required. | 
| static int | HTTP_MOVED_PERMHTTP Status-Code 301: Moved Permanently. | 
| static int | HTTP_MOVED_TEMPHTTP Status-Code 302: Temporary Redirect. | 
| static int | HTTP_MULT_CHOICEHTTP Status-Code 300: Multiple Choices. | 
| static int | HTTP_NO_CONTENTHTTP Status-Code 204: No Content. | 
| static int | HTTP_NOT_ACCEPTABLEHTTP Status-Code 406: Not Acceptable. | 
| static int | HTTP_NOT_AUTHORITATIVEHTTP Status-Code 203: Non-Authoritative Information. | 
| static int | HTTP_NOT_FOUNDHTTP Status-Code 404: Not Found. | 
| static int | HTTP_NOT_IMPLEMENTEDHTTP Status-Code 501: Not Implemented. | 
| static int | HTTP_NOT_MODIFIEDHTTP Status-Code 304: Not Modified. | 
| static int | HTTP_OKHTTP Status-Code 200: OK. | 
| static int | HTTP_PARTIALHTTP Status-Code 206: Partial Content. | 
| static int | HTTP_PAYMENT_REQUIREDHTTP Status-Code 402: Payment Required. | 
| static int | HTTP_PRECON_FAILEDHTTP Status-Code 412: Precondition Failed. | 
| static int | HTTP_PROXY_AUTHHTTP Status-Code 407: Proxy Authentication Required. | 
| static int | HTTP_REQ_TOO_LONGHTTP Status-Code 414: Request-URI Too Large. | 
| static int | HTTP_RESETHTTP Status-Code 205: Reset Content. | 
| static int | HTTP_SEE_OTHERHTTP Status-Code 303: See Other. | 
| static int | HTTP_SERVER_ERRORDeprecated. it is misplaced and shouldn't have existed. | 
| static int | HTTP_UNAUTHORIZEDHTTP Status-Code 401: Unauthorized. | 
| static int | HTTP_UNAVAILABLEHTTP Status-Code 503: Service Unavailable. | 
| static int | HTTP_UNSUPPORTED_TYPEHTTP Status-Code 415: Unsupported Media Type. | 
| static int | HTTP_USE_PROXYHTTP Status-Code 305: Use Proxy. | 
| static int | HTTP_VERSIONHTTP Status-Code 505: HTTP Version Not Supported. | 
| protected  boolean | instanceFollowRedirectsIf true, the protocol will automatically follow redirects. | 
| protected  String | methodThe HTTP method (GET,POST,PUT,etc.). | 
| protected  int | responseCodeAn intrepresenting the three digit HTTP Status-Code. | 
| protected  String | responseMessageThe HTTP response message. | 
| Fields inherited from class java.net.URLConnection | 
|---|
| allowUserInteraction, connected, doInput, doOutput, ifModifiedSince, url, useCaches | 
| Constructor Summary | |
|---|---|
| protected  | HttpURLConnection(URL u)Constructor for the HttpURLConnection. | 
| Method Summary | |
|---|---|
| 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 booleanindicating
 whether or not HTTP redirects (3xx) should
 be automatically followed. | 
|  String | getHeaderField(int n)Returns the value for the nth header field. | 
|  long | getHeaderFieldDate(String name,
                   long Default)Returns the value of the named field parsed as date. | 
|  String | getHeaderFieldKey(int n)Returns the key for the nth header field. | 
|  boolean | getInstanceFollowRedirects()Returns the value of this HttpURLConnection'sinstanceFollowRedirectsfield. | 
|  Permission | getPermission()Returns a permission object representing the permission necessary to make the connection represented by this object. | 
|  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 | setChunkedStreamingMode(int chunklen)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(int contentLength)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(boolean set)Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this class. | 
|  void | setInstanceFollowRedirects(boolean followRedirects)Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this HttpURLConnectioninstance. | 
|  void | setRequestMethod(String method)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. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
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.
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.
setInstanceFollowRedirects(boolean), 
getInstanceFollowRedirects(), 
setFollowRedirects(boolean)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
| Constructor Detail | 
|---|
protected HttpURLConnection(URL u)
u - the URL| Method Detail | 
|---|
public String getHeaderFieldKey(int n)
nth header field.
 Some implementations may treat the 0th 
 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 URLConnectionn - an index, where n >=0.
nth 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.
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.setChunkedStreamingMode(int)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 write in each chunk.
                If chunklen is less than or equal to zero, a default 
                value will be used.
IllegalStateException - if URLConnection is already connected 
                or if a different streaming mode is already enabled.setFixedLengthStreamingMode(int)public String getHeaderField(int n)
nth header field. 
 Some implementations may treat the 0th 
 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 URLConnectionn - an index, where n>=0.
nth header field,
                or null if the value does not exist.getHeaderFieldKey(int)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.SecurityManager.checkSetFactory(), 
getFollowRedirects()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.setFollowRedirects(boolean)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.instanceFollowRedirects, 
getInstanceFollowRedirects()public boolean getInstanceFollowRedirects()
HttpURLConnection's
 instanceFollowRedirects field.
HttpURLConnection's
          instanceFollowRedirects field.instanceFollowRedirects, 
setInstanceFollowRedirects(boolean)
public void setRequestMethod(String method)
                      throws ProtocolException
method - the HTTP method
ProtocolException - if the method cannot be reset or if
              the requested method isn't valid for HTTP.getRequestMethod()public String getRequestMethod()
setRequestMethod(java.lang.String)
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 long getHeaderFieldDate(String name,
                               long Default)
URLConnection
 This form of getHeaderField exists because some 
 connection types (e.g., http-ng) have pre-parsed 
 headers. Classes for that connection type can override this method 
 and short-circuit the parsing.
getHeaderFieldDate in class URLConnectionname - the name of the header field.Default - a default value.
Default argument is returned if the field is
          missing or malformed.public abstract void disconnect()
public abstract boolean usingProxy()
public Permission getPermission()
                         throws IOException
URLConnectionjava.security.AllPermission. Subclasses
 should override this method and return the permission
 that best represents the permission required to make a 
 a connection to the URL. For example, a URLConnection
 representing a file: URL would return a 
 java.io.FilePermission object.
 The permission returned may dependent upon the state of the connection. For example, the permission before connecting may be different from that after connecting. For example, an HTTP sever, say foo.com, may redirect the connection to a different host, say bar.com. Before connecting the permission returned by the connection will represent the permission needed to connect to foo.com, while the permission returned after connecting will be to bar.com.
Permissions are generally used for two purposes: to protect caches of objects obtained through URLConnections, and to check the right of a recipient to learn about a particular URL. In the first case, the permission should be obtained after the object has been obtained. For example, in an HTTP connection, this will represent the permission to connect to the host from which the data was ultimately fetched. In the second case, the permission should be obtained and tested before connecting.
getPermission in class URLConnectionIOException - if the computation of the permission
 requires network or file I/O and an exception occurs while
 computing it.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.
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.