Class NUMURLConnection
- java.lang.Object
-
- java.net.URLConnection
-
- uk.num.net.NUMURLConnection
-
public final class NUMURLConnection extends java.net.URLConnection
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringHIDE_PARAMSstatic java.lang.StringUSE_POPULATOR
-
Constructor Summary
Constructors Constructor Description NUMURLConnection(@NonNull java.net.URL url)Constructs a URL connection to the specified URL.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRequestProperty(java.lang.String key, java.lang.String value)Adds a general request property specified by a key-value pair.voidconnect()Opens a communications link to the resource referenced by this URL, if such a connection has not already been established.booleangetAllowUserInteraction()Returns the value of theallowUserInteractionfield for this object.java.lang.ObjectgetContent()Retrieves the contents of this URL connection.java.lang.ObjectgetContent(java.lang.Class[] classes)Retrieves the contents of this URL connection.java.lang.StringgetContentEncoding()Returns the value of thecontent-encodingheader field.intgetContentLength()Returns the value of thecontent-lengthheader field.longgetContentLengthLong()Returns the value of thecontent-lengthheader field as a long.java.lang.StringgetContentType()Returns the value of thecontent-typeheader field.longgetDate()Returns the value of thedateheader field.booleangetDefaultUseCaches()Returns the default value of aURLConnection'suseCachesflag.booleangetDoInput()Returns the value of thisURLConnection'sdoInputflag.booleangetDoOutput()Returns the value of thisURLConnection'sdoOutputflag.longgetExpiration()Returns the value of theexpiresheader field.java.lang.StringgetHeaderField(int n)Returns the value for thenth header field.java.lang.StringgetHeaderField(java.lang.String name)Returns the value of the named header field.longgetHeaderFieldDate(java.lang.String name, long Default)Returns the value of the named field parsed as date.intgetHeaderFieldInt(java.lang.String name, int Default)Returns the value of the named field parsed as a number.java.lang.StringgetHeaderFieldKey(int n)Returns the key for thenth header field.longgetHeaderFieldLong(java.lang.String name, long Default)Returns the value of the named field parsed as a number.java.util.Map<java.lang.String,java.util.List<java.lang.String>>getHeaderFields()Returns an unmodifiable Map of the header fields.longgetIfModifiedSince()Returns the value of this object'sifModifiedSincefield.java.io.InputStreamgetInputStream()Returns an input stream that reads from this open connection.longgetLastModified()Returns the value of thelast-modifiedheader field.java.io.OutputStreamgetOutputStream()Returns an output stream that writes to this connection.java.security.PermissiongetPermission()Returns a permission object representing the permission necessary to make the connection represented by this object.java.util.Map<java.lang.String,java.util.List<java.lang.String>>getRequestProperties()Returns an unmodifiable Map of general request properties for this connection.java.lang.StringgetRequestProperty(java.lang.String key)Returns the value of the named general request property for this connection.java.net.URLgetURL()Returns the value of thisURLConnection'sURLfield.booleangetUseCaches()Returns the value of thisURLConnection'suseCachesfield.voidsetAllowUserInteraction(boolean allowuserinteraction)Set the value of theallowUserInteractionfield of thisURLConnection.voidsetDefaultUseCaches(boolean defaultusecaches)Sets the default value of theuseCachesfield to the specified value.voidsetDoInput(boolean doinput)Sets the value of thedoInputfield for thisURLConnectionto the specified value.voidsetDoOutput(boolean dooutput)Sets the value of thedoOutputfield for thisURLConnectionto the specified value.voidsetIfModifiedSince(long ifmodifiedsince)Sets the value of theifModifiedSincefield of thisURLConnectionto the specified value.voidsetReadTimeout(int timeout)Sets the read timeout to a specified timeout, in milliseconds.voidsetRequestProperty(java.lang.String key, java.lang.String value)Sets the general request property.voidsetUseCaches(boolean usecaches)Sets the value of theuseCachesfield of thisURLConnectionto the specified value.java.lang.StringtoString()Returns aStringrepresentation of this URL connection.-
Methods inherited from class java.net.URLConnection
getConnectTimeout, getDefaultAllowUserInteraction, getDefaultRequestProperty, getDefaultUseCaches, getFileNameMap, getReadTimeout, guessContentTypeFromName, guessContentTypeFromStream, setConnectTimeout, setContentHandlerFactory, setDefaultAllowUserInteraction, setDefaultRequestProperty, setDefaultUseCaches, setFileNameMap
-
-
-
-
Field Detail
-
USE_POPULATOR
public static final java.lang.String USE_POPULATOR
- See Also:
- Constant Field Values
-
HIDE_PARAMS
public static final java.lang.String HIDE_PARAMS
- See Also:
- Constant Field Values
-
-
Method Detail
-
setReadTimeout
public void setReadTimeout(int timeout)
Sets the read timeout to a specified timeout, in milliseconds. A non-zero value specifies the timeout when reading from Input stream when a connection is established to a resource. If the timeout expires before there is data available for read, a java.net.SocketTimeoutException is raised. A timeout of zero is interpreted as an infinite timeout.Some non-standard implementation of this method ignores the specified timeout. To see the read timeout set, please call getReadTimeout().
- Overrides:
setReadTimeoutin classjava.net.URLConnection- Parameters:
timeout- anintthat specifies the timeout value to be used in milliseconds- Throws:
java.lang.IllegalArgumentException- if the timeout parameter is negative- Since:
- 1.5
- See Also:
URLConnection.getReadTimeout(),InputStream.read()
-
getURL
public java.net.URL getURL()
Returns the value of thisURLConnection'sURLfield.- Overrides:
getURLin classjava.net.URLConnection- Returns:
- the value of this
URLConnection'sURLfield. - See Also:
URLConnection.url
-
getContentLength
public int getContentLength()
Returns the value of thecontent-lengthheader field.Note:
getContentLengthLong()should be preferred over this method, since it returns alonginstead and is therefore more portable.- Overrides:
getContentLengthin classjava.net.URLConnection- Returns:
- the content length of the resource that this connection's URL
references,
-1if the content length is not known, or if the content length is greater than Integer.MAX_VALUE.
-
getContentLengthLong
public long getContentLengthLong()
Returns the value of thecontent-lengthheader field as a long.- Overrides:
getContentLengthLongin classjava.net.URLConnection- Returns:
- the content length of the resource that this connection's URL
references, or
-1if the content length is not known. - Since:
- 7.0
-
getContentType
public java.lang.String getContentType()
Returns the value of thecontent-typeheader field.- Overrides:
getContentTypein classjava.net.URLConnection- Returns:
- the content type of the resource that the URL references,
or
nullif not known. - See Also:
URLConnection.getHeaderField(String)
-
getContentEncoding
public java.lang.String getContentEncoding()
Returns the value of thecontent-encodingheader field.- Overrides:
getContentEncodingin classjava.net.URLConnection- Returns:
- the content encoding of the resource that the URL references,
or
nullif not known. - See Also:
URLConnection.getHeaderField(String)
-
getExpiration
public long getExpiration()
Returns the value of theexpiresheader field.- Overrides:
getExpirationin classjava.net.URLConnection- Returns:
- the expiration date of the resource that this URL references, or 0 if not known. The value is the number of milliseconds since January 1, 1970 GMT.
- See Also:
URLConnection.getHeaderField(String)
-
getDate
public long getDate()
Returns the value of thedateheader field.- Overrides:
getDatein classjava.net.URLConnection- Returns:
- the sending date of the resource that the URL references,
or
0if not known. The value returned is the number of milliseconds since January 1, 1970 GMT. - See Also:
URLConnection.getHeaderField(String)
-
getLastModified
public long getLastModified()
Returns the value of thelast-modifiedheader field. The result is the number of milliseconds since January 1, 1970 GMT.- Overrides:
getLastModifiedin classjava.net.URLConnection- Returns:
- the date the resource referenced by this
URLConnectionwas last modified, or 0 if not known. - See Also:
URLConnection.getHeaderField(String)
-
getHeaderField
public java.lang.String getHeaderField(java.lang.String name)
Returns the value of the named header field.If called on a connection that sets the same header multiple times with possibly different values, only the last value is returned.
- Overrides:
getHeaderFieldin classjava.net.URLConnection- Parameters:
name- the name of a header field.- Returns:
- the value of the named header field, or
nullif there is no such field in the header.
-
getHeaderFields
public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getHeaderFields()
Returns an unmodifiable Map of the header fields. The Map keys are Strings that represent the response-header field names. Each Map value is an unmodifiable List of Strings that represents the corresponding field values.- Overrides:
getHeaderFieldsin classjava.net.URLConnection- Returns:
- a Map of header fields
- Since:
- 1.4
-
getHeaderFieldInt
public int getHeaderFieldInt(java.lang.String name, int Default)Returns the value of the named field parsed as a number.This form of
getHeaderFieldexists 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.- Overrides:
getHeaderFieldIntin classjava.net.URLConnection- Parameters:
name- the name of the header field.Default- the default value.- Returns:
- the value of the named field, parsed as an integer. The
Defaultvalue is returned if the field is missing or malformed.
-
getHeaderFieldLong
public long getHeaderFieldLong(java.lang.String name, long Default)Returns the value of the named field parsed as a number.This form of
getHeaderFieldexists 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.- Overrides:
getHeaderFieldLongin classjava.net.URLConnection- Parameters:
name- the name of the header field.Default- the default value.- Returns:
- the value of the named field, parsed as a long. The
Defaultvalue is returned if the field is missing or malformed. - Since:
- 7.0
-
getHeaderFieldDate
public long getHeaderFieldDate(java.lang.String name, long Default)Returns the value of the named field parsed as date. The result is the number of milliseconds since January 1, 1970 GMT represented by the named field.This form of
getHeaderFieldexists 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.- Overrides:
getHeaderFieldDatein classjava.net.URLConnection- Parameters:
name- the name of the header field.Default- a default value.- Returns:
- the value of the field, parsed as a date. The value of the
Defaultargument is returned if the field is missing or malformed.
-
getHeaderFieldKey
public java.lang.String getHeaderFieldKey(int n)
Returns the key for thenth header field. It returnsnullif there are fewer thann+1fields.- Overrides:
getHeaderFieldKeyin classjava.net.URLConnection- Parameters:
n- an index, wheren>=0- Returns:
- the key for the
nth header field, ornullif there are fewer thann+1fields.
-
getHeaderField
public java.lang.String getHeaderField(int n)
Returns the value for thenth header field. It returnsnullif there are fewer thann+1fields.This method can be used in conjunction with the
getHeaderFieldKeymethod to iterate through all the headers in the message.- Overrides:
getHeaderFieldin classjava.net.URLConnection- Parameters:
n- an index, wheren>=0- Returns:
- the value of the
nth header field ornullif there are fewer thann+1fields - See Also:
URLConnection.getHeaderFieldKey(int)
-
getContent
public java.lang.Object getContent() throws java.io.IOExceptionRetrieves the contents of this URL connection.This method first determines the content type of the object by calling the
getContentTypemethod. If this is the first time that the application has seen that specific content type, a content handler for that content type is created:- If the application has set up a content handler factory instance
using the
setContentHandlerFactorymethod, thecreateContentHandlermethod of that instance is called with the content type as an argument; the result is a content handler for that content type. - If no content handler factory has yet been set up, or if the
factory's
createContentHandlermethod returnsnull, then the application loads the class named:
where <contentType> is formed by taking the content-type string, replacing all slash characters with asun.net.www.content.<contentType>period('.'), and all other non-alphanumeric characters with the underscore character '_'. The alphanumeric characters are specifically the 26 uppercase ASCII letters 'A' through 'Z', the 26 lowercase ASCII letters 'a' through 'z', and the 10 ASCII digits '0' through '9'. If the specified class does not exist, or is not a subclass ofContentHandler, then anUnknownServiceExceptionis thrown.
- Overrides:
getContentin classjava.net.URLConnection- Returns:
- the object fetched. The
instanceofoperator should be used to determine the specific kind of object returned. - Throws:
java.io.IOException- if an I/O error occurs while getting the content.- See Also:
ContentHandlerFactory.createContentHandler(String),URLConnection.getContentType(),URLConnection.setContentHandlerFactory(ContentHandlerFactory)
- If the application has set up a content handler factory instance
using the
-
getContent
public java.lang.Object getContent(java.lang.Class[] classes) throws java.io.IOExceptionRetrieves the contents of this URL connection.- Overrides:
getContentin classjava.net.URLConnection- Parameters:
classes- theClassarray indicating the requested types- Returns:
- the object fetched that is the first match of the type
specified in the classes array. null if none of
the requested types are supported.
The
instanceofoperator should be used to determine the specific kind of object returned. - Throws:
java.io.IOException- if an I/O error occurs while getting the content.- Since:
- 1.3
- See Also:
URLConnection.getContent(),ContentHandlerFactory.createContentHandler(String),URLConnection.getContent(Class[]),URLConnection.setContentHandlerFactory(ContentHandlerFactory)
-
getPermission
public java.security.Permission getPermission() throws java.io.IOExceptionReturns a permission object representing the permission necessary to make the connection represented by this object. This method returns null if no permission is required to make the connection. By default, this method returnsjava.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, aURLConnectionrepresenting afile:URL would return ajava.io.FilePermissionobject.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.
- Overrides:
getPermissionin classjava.net.URLConnection- Returns:
- the permission object representing the permission necessary to make the connection represented by this URLConnection.
- Throws:
java.io.IOException- if the computation of the permission requires network or file I/O and an exception occurs while computing it.
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOExceptionReturns an input stream that reads from this open connection.A SocketTimeoutException can be thrown when reading from the returned input stream if the read timeout expires before data is available for read.
- Overrides:
getInputStreamin classjava.net.URLConnection- Returns:
- an input stream that reads from this open connection.
- Throws:
java.io.IOException- if an I/O error occurs while creating the input stream.- See Also:
setReadTimeout(int),URLConnection.getReadTimeout()
-
getOutputStream
public java.io.OutputStream getOutputStream() throws java.io.IOExceptionReturns an output stream that writes to this connection.- Overrides:
getOutputStreamin classjava.net.URLConnection- Returns:
- an output stream that writes to this connection.
- Throws:
java.io.IOException- if an I/O error occurs while creating the output stream.
-
toString
public java.lang.String toString()
Returns aStringrepresentation of this URL connection.- Overrides:
toStringin classjava.net.URLConnection- Returns:
- a string representation of this
URLConnection.
-
getDoInput
public boolean getDoInput()
Returns the value of thisURLConnection'sdoInputflag.- Overrides:
getDoInputin classjava.net.URLConnection- Returns:
- the value of this
URLConnection'sdoInputflag. - See Also:
setDoInput(boolean)
-
setDoInput
public void setDoInput(boolean doinput)
Sets the value of thedoInputfield for thisURLConnectionto the specified value.A URL connection can be used for input and/or output. Set the DoInput flag to true if you intend to use the URL connection for input, false if not. The default is true.
- Overrides:
setDoInputin classjava.net.URLConnection- Parameters:
doinput- the new value.- Throws:
java.lang.IllegalStateException- if already connected- See Also:
URLConnection.doInput,getDoInput()
-
getDoOutput
public boolean getDoOutput()
Returns the value of thisURLConnection'sdoOutputflag.- Overrides:
getDoOutputin classjava.net.URLConnection- Returns:
- the value of this
URLConnection'sdoOutputflag. - See Also:
setDoOutput(boolean)
-
setDoOutput
public void setDoOutput(boolean dooutput)
Sets the value of thedoOutputfield for thisURLConnectionto the specified value.A URL connection can be used for input and/or output. Set the DoOutput flag to true if you intend to use the URL connection for output, false if not. The default is false.
- Overrides:
setDoOutputin classjava.net.URLConnection- Parameters:
dooutput- the new value.- Throws:
java.lang.IllegalStateException- if already connected- See Also:
getDoOutput()
-
getAllowUserInteraction
public boolean getAllowUserInteraction()
Returns the value of theallowUserInteractionfield for this object.- Overrides:
getAllowUserInteractionin classjava.net.URLConnection- Returns:
- the value of the
allowUserInteractionfield for this object. - See Also:
setAllowUserInteraction(boolean)
-
setAllowUserInteraction
public void setAllowUserInteraction(boolean allowuserinteraction)
Set the value of theallowUserInteractionfield of thisURLConnection.- Overrides:
setAllowUserInteractionin classjava.net.URLConnection- Parameters:
allowuserinteraction- the new value.- Throws:
java.lang.IllegalStateException- if already connected- See Also:
getAllowUserInteraction()
-
getUseCaches
public boolean getUseCaches()
Returns the value of thisURLConnection'suseCachesfield.- Overrides:
getUseCachesin classjava.net.URLConnection- Returns:
- the value of this
URLConnection'suseCachesfield. - See Also:
setUseCaches(boolean)
-
setUseCaches
public void setUseCaches(boolean usecaches)
Sets the value of theuseCachesfield of thisURLConnectionto the specified value.Some protocols do caching of documents. Occasionally, it is important to be able to "tunnel through" and ignore the caches (e.g., the "reload" button in a browser). If the UseCaches flag on a connection is true, the connection is allowed to use whatever caches it can. If false, caches are to be ignored. The default value comes from DefaultUseCaches, which defaults to true.
- Overrides:
setUseCachesin classjava.net.URLConnection- Parameters:
usecaches- abooleanindicating whether or not to allow caching- Throws:
java.lang.IllegalStateException- if already connected- See Also:
getUseCaches()
-
getIfModifiedSince
public long getIfModifiedSince()
Returns the value of this object'sifModifiedSincefield.- Overrides:
getIfModifiedSincein classjava.net.URLConnection- Returns:
- the value of this object's
ifModifiedSincefield. - See Also:
setIfModifiedSince(long)
-
setIfModifiedSince
public void setIfModifiedSince(long ifmodifiedsince)
Sets the value of theifModifiedSincefield of thisURLConnectionto the specified value.- Overrides:
setIfModifiedSincein classjava.net.URLConnection- Parameters:
ifmodifiedsince- the new value.- Throws:
java.lang.IllegalStateException- if already connected- See Also:
getIfModifiedSince()
-
getDefaultUseCaches
public boolean getDefaultUseCaches()
Returns the default value of aURLConnection'suseCachesflag.Ths default is "sticky", being a part of the static state of all URLConnections. This flag applies to the next, and all following URLConnections that are created.
- Overrides:
getDefaultUseCachesin classjava.net.URLConnection- Returns:
- the default value of a
URLConnection'suseCachesflag. - See Also:
setDefaultUseCaches(boolean)
-
setDefaultUseCaches
public void setDefaultUseCaches(boolean defaultusecaches)
Sets the default value of theuseCachesfield to the specified value.- Overrides:
setDefaultUseCachesin classjava.net.URLConnection- Parameters:
defaultusecaches- the new value.- See Also:
getDefaultUseCaches()
-
setRequestProperty
public void setRequestProperty(java.lang.String key, java.lang.String value)Sets the general request property. If a property with the key already exists, overwrite its value with the new value.NOTE: HTTP requires all request properties which can legally have multiple instances with the same key to use a comma-separated list syntax which enables multiple properties to be appended into a single property.
- Overrides:
setRequestPropertyin classjava.net.URLConnection- Parameters:
key- the keyword by which the request is known (e.g., "Accept").value- the value associated with it.- Throws:
java.lang.IllegalStateException- if already connectedjava.lang.NullPointerException- if key isnull- See Also:
getRequestProperty(String)
-
addRequestProperty
public void addRequestProperty(java.lang.String key, java.lang.String value)Adds a general request property specified by a key-value pair. This method will not overwrite existing values associated with the same key.- Overrides:
addRequestPropertyin classjava.net.URLConnection- Parameters:
key- the keyword by which the request is known (e.g., "Accept").value- the value associated with it.- Throws:
java.lang.IllegalStateException- if already connectedjava.lang.NullPointerException- if key is null- Since:
- 1.4
- See Also:
getRequestProperties()
-
getRequestProperty
public java.lang.String getRequestProperty(java.lang.String key)
Returns the value of the named general request property for this connection.- Overrides:
getRequestPropertyin classjava.net.URLConnection- Parameters:
key- the keyword by which the request is known (e.g., "Accept").- Returns:
- the value of the named general request property for this connection. If key is null, then null is returned.
- Throws:
java.lang.IllegalStateException- if already connected- See Also:
setRequestProperty(String, String)
-
getRequestProperties
public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getRequestProperties()
Returns an unmodifiable Map of general request properties for this connection. The Map keys are Strings that represent the request-header field names. Each Map value is a unmodifiable List of Strings that represents the corresponding field values.- Overrides:
getRequestPropertiesin classjava.net.URLConnection- Returns:
- a Map of the general request properties for this connection.
- Throws:
java.lang.IllegalStateException- if already connected- Since:
- 1.4
-
connect
public void connect() throws java.io.IOExceptionOpens a communications link to the resource referenced by this URL, if such a connection has not already been established.If the
connectmethod is called when the connection has already been opened (indicated by theconnectedfield having the valuetrue), the call is ignored.URLConnection objects go through two phases: first they are created, then they are connected. After being created, and before being connected, various options can be specified (e.g., doInput and UseCaches). After connecting, it is an error to try to set them. Operations that depend on being connected, like getContentLength, will implicitly perform the connection, if necessary.
- Specified by:
connectin classjava.net.URLConnection- Throws:
java.io.IOException- if an I/O error occurs while opening the connection.- See Also:
URLConnection.connected,URLConnection.getConnectTimeout(),URLConnection.setConnectTimeout(int)
-
-