Package org.eclipse.jetty.util.resource
Class PathResource
- java.lang.Object
-
- org.eclipse.jetty.util.resource.Resource
-
- org.eclipse.jetty.util.resource.PathResource
-
- All Implemented Interfaces:
Closeable,AutoCloseable,ResourceFactory
public class PathResource extends Resource
Java NIO Path equivalent of FileResource.
-
-
Field Summary
-
Fields inherited from class org.eclipse.jetty.util.resource.Resource
__defaultUseCaches
-
-
Constructor Summary
Constructors Constructor Description PathResource(File file)Construct a new PathResource from a File object.PathResource(URI uri)Construct a new PathResource from a URI object.PathResource(URL url)Create a new PathResource from a provided URL object.PathResource(Path path)Construct a new PathResource from a Path object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceaddPath(String subpath)Returns the resource contained inside the current resource with the given name.voidclose()Release any temporary resources held by the resource.voidcopyTo(File destination)Copy the Resource to the new destination file.booleandelete()Deletes the given resourcebooleanequals(Object obj)booleanexists()URIgetAlias()PathgetAliasPath()The Alias as a Path.FilegetFile()File representing the given resource.InputStreamgetInputStream()Input stream to the resourceStringgetName()The name of the resource.PathgetPath()ReadableByteChannelgetReadableByteChannel()Readable ByteChannel for the resource.URIgetURI()URI representing the resource.URLgetURL()URL representing the resource.inthashCode()booleanisAlias()booleanisContainedIn(Resource r)booleanisDirectory()longlastModified()Time resource was last modified.longlength()Length of the resource.String[]list()list of resource names contained in the given resource.booleanrenameTo(Resource dest)Rename the given resourceStringtoString()-
Methods inherited from class org.eclipse.jetty.util.resource.Resource
encode, finalize, getAllResources, getAssociate, getDefaultUseCaches, getListHTML, getResource, getWeakETag, getWeakETag, isContainedIn, newClassPathResource, newClassPathResource, newResource, newResource, newResource, newResource, newResource, newResource, newSystemResource, release, setAssociate, setDefaultUseCaches, toURL, writeTo
-
-
-
-
Constructor Detail
-
PathResource
public PathResource(File file)
Construct a new PathResource from a File object.An invocation of this convenience constructor of the form.
new PathResource(file);
behaves in exactly the same way as the expression
new PathResource(file.toPath());
- Parameters:
file- the file to use
-
PathResource
public PathResource(Path path)
Construct a new PathResource from a Path object.- Parameters:
path- the path to use
-
PathResource
public PathResource(URI uri) throws IOException
Construct a new PathResource from a URI object.Must be an absolute URI using the
filescheme.- Parameters:
uri- the URI to build this PathResource from.- Throws:
IOException- if unable to construct the PathResource from the URI.
-
PathResource
public PathResource(URL url) throws IOException, URISyntaxException
Create a new PathResource from a provided URL object.An invocation of this convenience constructor of the form.
new PathResource(url);
behaves in exactly the same way as the expression
new PathResource(url.toURI());
- Parameters:
url- the url to attempt to create PathResource from- Throws:
IOException- if URL doesn't point to a location that can be transformed to a PathResourceURISyntaxException- if the provided URL was malformed
-
-
Method Detail
-
addPath
public Resource addPath(String subpath) throws IOException
Description copied from class:ResourceReturns the resource contained inside the current resource with the given name.- Specified by:
addPathin classResource- Parameters:
subpath- The path segment to add, which is not encoded- Returns:
- the Resource for the resolved path within this Resource.
- Throws:
IOException- if unable to resolve the pathMalformedURLException- if the resolution of the path fails because the input path parameter is malformed.
-
close
public void close()
Description copied from class:ResourceRelease any temporary resources held by the resource.
-
delete
public boolean delete() throws SecurityExceptionDescription copied from class:ResourceDeletes the given resource- Specified by:
deletein classResource- Returns:
- true if resource was found and successfully deleted, false if resource didn't exist or was unable to be deleted.
- Throws:
SecurityException- if unable to delete due to permissions
-
exists
public boolean exists()
-
getFile
public File getFile() throws IOException
Description copied from class:ResourceFile representing the given resource.- Specified by:
getFilein classResource- Returns:
- an File representing the given resource or NULL if this is not possible.
- Throws:
IOException- if unable to get the resource due to permissions
-
getInputStream
public InputStream getInputStream() throws IOException
Description copied from class:ResourceInput stream to the resource- Specified by:
getInputStreamin classResource- Returns:
- an input stream to the resource
- Throws:
IOException- if unable to open the input stream
-
getReadableByteChannel
public ReadableByteChannel getReadableByteChannel() throws IOException
Description 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:
IOException- if unable to open the readable bytechannel for the resource.
-
isContainedIn
public boolean isContainedIn(Resource r) throws MalformedURLException
- Specified by:
isContainedInin classResource- Throws:
MalformedURLException
-
isDirectory
public boolean isDirectory()
- 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()
Description copied from class:ResourceTime resource was last modified.- Specified by:
lastModifiedin classResource- Returns:
- the last modified time as milliseconds since unix epoch
-
length
public long length()
Description copied from class:ResourceLength of the resource.
-
isAlias
public boolean isAlias()
-
getAliasPath
public Path getAliasPath()
The Alias as a Path.Note: this cannot return the alias as a DIFFERENT path in 100% of situations, due to Java's internal Path/File normalization.
- Returns:
- the alias as a path.
-
getAlias
public URI getAlias()
-
list
public String[] list()
Description copied from class:Resourcelist of resource names contained in the given resource. Ordering is unspecified, so callers may wish to sort the return value to ensure deterministic behavior.
-
renameTo
public boolean renameTo(Resource dest) throws SecurityException
Description copied from class:ResourceRename the given resource- Specified by:
renameToin classResource- Parameters:
dest- the destination name for the resource- Returns:
- true if the resource was renamed, false if the resource didn't exist or was unable to be renamed.
- Throws:
SecurityException- if unable to rename due to permissions
-
copyTo
public void copyTo(File destination) throws IOException
Description copied from class:ResourceCopy the Resource to the new destination file.Will not replace existing destination file.
- Overrides:
copyToin classResource- Parameters:
destination- the destination file to create- Throws:
IOException- if unable to copy the resource
-
-