public class UrlResource extends AbstractFileResolvingResource
Resource implementation for java.net.URL
locators.
Obviously supports resolution as URL, and also as File in case of
the "file:" protocol.
Modifiers | Name | Description |
---|---|---|
private java.net.URL |
cleanedUrl |
Cleaned URL (with normalized path), used for comparisons. |
private java.net.URI |
uri |
Original URI, if available; used for URI and File access. |
private java.net.URL |
url |
Original URL, used for actual access. |
Constructor and description |
---|
UrlResource
(java.net.URL url) Create a new UrlResource. |
UrlResource
(java.net.URI uri) Create a new UrlResource. |
UrlResource
(java.lang.String path) Create a new UrlResource. |
Type Params | Return Type | Name and description |
---|---|---|
|
public Resource |
createRelative(java.lang.String relativePath) This implementation creates a UrlResource, applying the given path relative to the path of the underlying URL of this resource descriptor. |
|
public boolean |
equals(java.lang.Object obj) This implementation compares the underlying URL references. |
|
private java.net.URL |
getCleanedUrl(java.net.URL originalUrl, java.lang.String originalPath) Determine a cleaned URL for the given original URL. |
|
public java.lang.String |
getDescription() This implementation returns a description that includes the URL. |
|
public java.io.File |
getFile() This implementation returns a File reference for the underlying URL/URI, provided that it refers to a file in the file system. |
|
public java.lang.String |
getFilename() This implementation returns the name of the file that this URL refers to. |
|
public java.io.InputStream |
getInputStream() This implementation opens an InputStream for the given URL. |
|
public java.net.URI |
getURI() This implementation returns the underlying URI directly, if possible. |
|
public java.net.URL |
getURL() This implementation returns the underlying URL reference. |
|
public int |
hashCode() This implementation returns the hash code of the underlying URL reference. |
|
public java.lang.String |
toString() |
|
private static void |
useCachesIfNecessary(java.net.URLConnection con) |
Methods inherited from class | Name |
---|---|
class AbstractFileResolvingResource |
contentLength, exists, getFile, getFile, getFileForLastModifiedCheck, isReadable, lastModified, useCachesIfNecessary |
Cleaned URL (with normalized path), used for comparisons.
Original URI, if available; used for URI and File access.
Original URL, used for actual access.
Create a new UrlResource.
url
- a URLCreate a new UrlResource.
uri
- a URICreate a new UrlResource.
path
- a URL pathThis implementation creates a UrlResource, applying the given path relative to the path of the underlying URL of this resource descriptor.
This implementation compares the underlying URL references.
Determine a cleaned URL for the given original URL.
originalUrl
- the original URLoriginalPath
- the original URL pathThis implementation returns a description that includes the URL.
This implementation returns a File reference for the underlying URL/URI, provided that it refers to a file in the file system.
This implementation returns the name of the file that this URL refers to.
This implementation opens an InputStream for the given URL.
It sets the "UseCaches" flag to false
,
mainly to avoid jar file locking on Windows.
This implementation returns the underlying URI directly, if possible.
This implementation returns the underlying URL reference.
This implementation returns the hash code of the underlying URL reference.