Method |
Description |
void addRequestProperty(String key, String value) |
It adds a general request property specified by a key-value pair |
void connect() |
It opens a communications link to the resource referenced by this URL, if such a connection has not already been established. |
boolean getAllowUserInteraction() |
It returns the value of the allowUserInteraction field for the object. |
int getConnectionTimeout() |
It returns setting for connect timeout. |
Object getContent() |
It retrieves the contents of the URL connection. |
Object getContent(Class[] classes) |
It retrieves the contents of the URL connection. |
String getContentEncoding() |
It returns the value of the content-encoding header field. |
int getContentLength() |
It returns the value of the content-length header field. |
long getContentLengthLong() |
It returns the value of the content-length header field as long. |
String getContentType() |
It returns the value of the date header field. |
long getDate() |
It returns the value of the date header field. |
static boolean getDefaultAllowUserInteraction() |
It returns the default value of the allowUserInteraction field. |
boolean getDefaultUseCaches() |
It returns the default value of an URLConnetion's useCaches flag. |
boolean getDoInput() |
It returns the value of the URLConnection's doInput flag. |
boolean getDoInput() |
It returns the value of the URLConnection's doOutput flag. |
long getExpiration() |
It returns the value of the expires header files. |
static FileNameMap getFilenameMap() |
It loads the filename map from a data file. |
String getHeaderField(int n) |
It returns the value of nth header field |
String getHeaderField(String name) |
It returns the value of the named header field. |
long getHeaderFieldDate(String name, long Default) |
It returns the value of the named field parsed as a number. |
int getHeaderFieldInt(String name, int Default) |
It returns the value of the named field parsed as a number. |
String getHeaderFieldKey(int n) |
It returns the key for the nth header field. |
long getHeaderFieldLong(String name, long Default) |
It returns the value of the named field parsed as a number. |
Map<String, List<String>> getHeaderFields() |
It returns the unmodifiable Map of the header field. |
long getIfModifiedSince() |
It returns the value of the object's ifModifiedSince field. |
InputStream getInputStream() |
It returns an input stream that reads from the open condition. |
long getLastModified() |
It returns the value of the last-modified header field. |
OutputStream getOutputStream() |
It returns an output stream that writes to the connection. |
Permission getPermission() |
It returns a permission object representing the permission necessary to make the connection represented by the object. |
int getReadTimeout() |
It returns setting for read timeout. |
Map<String, List<String>> getRequestProperties() |
It returns the value of the named general request property for the connection. |
URL getURL() |
It returns the value of the URLConnection's URL field. |
boolean getUseCaches() |
It returns the value of the URLConnection's useCaches field. |
Static String guessContentTypeFromName(String fname) |
It tries to determine the content type of an object, based on the specified file component of a URL. |
static String guessContentTypeFromStream(InputStream is) |
It tries to determine the type of an input stream based on the characters at the beginning of the input stream. |
void setAllowUserInteraction(boolean allowuserinteraction) |
It sets the value of the allowUserInteraction field of this URLConnection. |
static void setContentHandlerFactory(ContentHandlerFactory fac) |
It sets the ContentHandlerFactory of an application. |
static void setDefaultAllowUserInteraction(boolean defaultallowuserinteraction) |
It sets the default value of the allowUserInteraction field for all future URLConnection objects to the specified value. |
void steDafaultUseCaches(boolean defaultusecaches) |
It sets the default value of the useCaches field to the specified value. |
void setDoInput(boolean doinput) |
It sets the value of the doInput field for this URLConnection to the specified value. |
void setDoOutput(boolean dooutput) |
It sets the value of the doOutput field for the URLConnection to the specified value. |