Package org.eclipse.jetty.util.resource
Class URLResource
- java.lang.Object
-
- org.eclipse.jetty.util.resource.Resource
-
- org.eclipse.jetty.util.resource.URLResource
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,ResourceFactory
- Direct Known Subclasses:
JarResource
public class URLResource extends Resource
URL resource class.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.net.URLConnection_connectionprotected java.io.InputStream_inprotected java.net.URL_urlprotected java.lang.String_urlString-
Fields inherited from class org.eclipse.jetty.util.resource.Resource
__defaultUseCaches
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedURLResource(java.net.URL url, java.net.URLConnection connection)protectedURLResource(java.net.URL url, java.net.URLConnection connection, boolean useCaches)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceaddPath(java.lang.String path)Returns the resource contained inside the current resource with the given nameprotected booleancheckConnection()voidclose()Release any resources held by the resource.booleandelete()Deletes the given resourcebooleanequals(java.lang.Object o)booleanexists()Returns true if the represented resource exists.java.io.FilegetFile()Returns an File representing the given resource or NULL if this is not possible.java.io.InputStreamgetInputStream()Returns an input stream to the resource.protected java.io.InputStreamgetInputStream(boolean resetConnection)Returns an input stream to the resource, optionally nulling out the underlying url connection.java.lang.StringgetName()Returns the name of the resourcejava.nio.channels.ReadableByteChannelgetReadableByteChannel()Readable ByteChannel for the resource.java.net.URLgetURL()Returns a URL representing the given resourcebooleangetUseCaches()inthashCode()booleanisContainedIn(Resource containingResource)booleanisDirectory()Returns true if the represented resource is a container/directory.longlastModified()Returns the last modified timelonglength()Return the length of the resourcejava.lang.String[]list()Returns a list of resource names contained in the given resourcebooleanrenameTo(Resource dest)Rename the given resourcejava.lang.StringtoString()-
Methods inherited from class org.eclipse.jetty.util.resource.Resource
copyTo, encode, finalize, getAlias, getAllResources, getAssociate, getDefaultUseCaches, getListHTML, getListHTML, getResource, getURI, getWeakETag, getWeakETag, isAlias, isContainedIn, isSame, newClassPathResource, newClassPathResource, newResource, newResource, newResource, newResource, newResource, newResource, newSystemResource, release, setAssociate, setDefaultUseCaches, toURL, writeTo
-
-
-
-
Method Detail
-
checkConnection
protected boolean checkConnection()
-
close
public void close()
Release any resources held by the resource.
-
exists
public boolean exists()
Returns true if the represented resource exists.
-
isDirectory
public boolean isDirectory()
Returns true if the represented resource is a container/directory. If the resource is not a file, resources ending with "/" are considered directories.- Specified by:
isDirectoryin classResource- Returns:
- true if the represented resource is a container/directory. if the resource is not a file, resources ending with "/" are considered directories.
-
lastModified
public long lastModified()
Returns the last modified time- Specified by:
lastModifiedin classResource- Returns:
- the last modified time as milliseconds since unix epoch
-
length
public long length()
Return the length of the resource
-
getURL
public java.net.URL getURL()
Returns a URL representing the given resource
-
getFile
public java.io.File getFile() throws java.io.IOExceptionReturns an File representing the given resource or NULL if this is not possible.
-
getName
public java.lang.String getName()
Returns the name of the resource
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOExceptionReturns an input stream to the resource. The underlying url connection will be nulled out to prevent re-use.- Specified by:
getInputStreamin classResource- Returns:
- an input stream to the resource
- Throws:
java.io.IOException- if unable to open the input stream
-
getInputStream
protected java.io.InputStream getInputStream(boolean resetConnection) throws java.io.IOExceptionReturns an input stream to the resource, optionally nulling out the underlying url connection. If the connection is not nulled out, a subsequent call to getInputStream() may return an existing and already in-use input stream - this depends on the url protocol. Eg JarURLConnection does not reuse inputstreams.- Parameters:
resetConnection- if true the connection field is set to null- Returns:
- the inputstream for this resource
- Throws:
java.io.IOException- if unable to open the input stream
-
getReadableByteChannel
public java.nio.channels.ReadableByteChannel getReadableByteChannel() throws java.io.IOExceptionDescription copied from class:ResourceReadable ByteChannel for the resource.- Specified by:
getReadableByteChannelin classResource- Returns:
- an readable bytechannel to the resource or null if one is not available.
- Throws:
java.io.IOException- if unable to open the readable bytechannel for the resource.
-
delete
public boolean delete() throws java.lang.SecurityExceptionDeletes the given resource
-
renameTo
public boolean renameTo(Resource dest) throws java.lang.SecurityException
Rename the given resource
-
list
public java.lang.String[] list()
Returns a list of resource names contained in the given resource
-
addPath
public Resource addPath(java.lang.String path) throws java.io.IOException
Returns the resource contained inside the current resource with the given name- Specified by:
addPathin classResource- Parameters:
path- The path segment to add, which is not encoded. The path may be non canonical, but if so then the resulting Resource will return true fromResource.isAlias().- Returns:
- the Resource for the resolved path within this Resource.
- Throws:
java.io.IOException- if unable to resolve the pathjava.net.MalformedURLException- if the resolution of the path fails because the input path parameter is malformed, or a relative path attempts to access above the root resource.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
getUseCaches
public boolean getUseCaches()
-
isContainedIn
public boolean isContainedIn(Resource containingResource) throws java.net.MalformedURLException
- Specified by:
isContainedInin classResource- Throws:
java.net.MalformedURLException
-
-