Package org.eclipse.jetty.util.resource
Class FileResource
java.lang.Object
org.eclipse.jetty.util.resource.Resource
org.eclipse.jetty.util.resource.FileResource
- All Implemented Interfaces:
Closeable
,AutoCloseable
,ResourceFactory
Deprecated.
File Resource.
Handle resources of implied or explicit file type.
This class can check for aliasing in the filesystem (eg case
insensitivity). By default this is turned on, or it can be controlled
by calling the static method @see FileResource#setCheckAliases(boolean)
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final URI
Deprecated.private final File
Deprecated.private final URI
Deprecated.private static final Logger
Deprecated.Fields inherited from class org.eclipse.jetty.util.resource.Resource
__defaultUseCaches, _associate
-
Constructor Summary
ConstructorsConstructorDescriptionFileResource
(File file) Deprecated.FileResource
(File base, String childPath) Deprecated.FileResource
(URI uri) Deprecated.FileResource
(URL url) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the resource contained inside the current resource with the given name.private void
assertValidPath
(String path) Deprecated.private static URI
checkFileAlias
(URI uri, File file) Deprecated.void
close()
Deprecated.Release any temporary resources held by the resource.void
Deprecated.Copy the Resource to the new destination file.boolean
delete()
Deprecated.Deletes the given resourceboolean
Deprecated.boolean
exists()
Deprecated.Returns true if the resource exists.getAlias()
Deprecated.getFile()
Deprecated.Returns an File representing the given resource or NULL if this is not possible.Deprecated.Returns an input stream to the resourcegetName()
Deprecated.Returns the name of the resourceDeprecated.Readable ByteChannel for the resource.getURI()
Deprecated.URI representing the resource.getURL()
Deprecated.URL representing the resource.int
hashCode()
Deprecated.boolean
Deprecated.boolean
Deprecated.Returns true if the resource is a container/directory.boolean
Deprecated.Return true if the passed Resource represents the same resource as the Resource.long
Deprecated.Returns the last modified timelong
length()
Deprecated.Return the length of the resourceString[]
list()
Deprecated.Returns a list of resources contained in the given resourceprivate static URI
normalizeURI
(File file, URI uri) Deprecated.boolean
Deprecated.Rename the given resourcetoString()
Deprecated.Methods inherited from class org.eclipse.jetty.util.resource.Resource
encode, finalize, getAllResources, getAssociate, getDefaultUseCaches, getListHTML, getListHTML, getResource, getWeakETag, getWeakETag, isAlias, isContainedIn, newClassPathResource, newClassPathResource, newResource, newResource, newResource, newResource, newResource, newResource, newResource, newSystemResource, release, setAssociate, setDefaultUseCaches, toURL, writeTo
-
Field Details
-
LOG
Deprecated. -
_file
Deprecated. -
_uri
Deprecated. -
_alias
Deprecated.
-
-
Constructor Details
-
FileResource
Deprecated.- Throws:
IOException
URISyntaxException
-
FileResource
Deprecated. -
FileResource
Deprecated. -
FileResource
Deprecated.
-
-
Method Details
-
isSame
Deprecated.Description copied from class:Resource
Return true if the passed Resource represents the same resource as the Resource. For many resource types, this is equivalent toObject.equals(Object)
, however for resources types that support aliasing, this maybe some other check (e.g.Files.isSameFile(Path, Path)
). -
normalizeURI
Deprecated.- Throws:
URISyntaxException
-
checkFileAlias
Deprecated. -
addPath
Deprecated.Description copied from class:Resource
Returns the resource contained inside the current resource with the given name.- Specified by:
addPath
in classResource
- Parameters:
path
- 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.
-
assertValidPath
Deprecated. -
getAlias
Deprecated. -
exists
public boolean exists()Deprecated.Returns true if the resource exists. -
lastModified
public long lastModified()Deprecated.Returns the last modified time- Specified by:
lastModified
in classResource
- Returns:
- the last modified time as milliseconds since unix epoch
-
isDirectory
public boolean isDirectory()Deprecated.Returns true if the resource is a container/directory.- Specified by:
isDirectory
in classResource
- Returns:
- true if the represented resource is a container/directory. if the resource is not a file, resources ending with "/" are considered directories.
-
length
public long length()Deprecated.Return the length of the resource -
getName
Deprecated.Returns the name of the resource -
getFile
Deprecated.Returns an File representing the given resource or NULL if this is not possible. -
getInputStream
Deprecated.Returns an input stream to the resource- Specified by:
getInputStream
in classResource
- Returns:
- an input stream to the resource
- Throws:
IOException
- if unable to open the input stream
-
getReadableByteChannel
Deprecated.Description copied from class:Resource
Readable ByteChannel for the resource.- Specified by:
getReadableByteChannel
in 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.
-
delete
Deprecated.Deletes the given resource- Specified by:
delete
in 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
-
renameTo
Deprecated.Rename the given resource- Specified by:
renameTo
in 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
-
list
Deprecated.Returns a list of resources contained in the given resource -
equals
Deprecated.- Overrides:
equals
in classObject
- Parameters:
o
- the object to compare against this instance- Returns:
true
of the objecto
is aFileResource
pointing to the same file as this resource.
-
hashCode
public int hashCode()Deprecated. -
copyTo
Deprecated.Description copied from class:Resource
Copy the Resource to the new destination file.Will not replace existing destination file.
- Overrides:
copyTo
in classResource
- Parameters:
destination
- the destination file to create- Throws:
IOException
- if unable to copy the resource
-
isContainedIn
Deprecated.- Specified by:
isContainedIn
in classResource
- Throws:
MalformedURLException
-
close
public void close()Deprecated.Description copied from class:Resource
Release any temporary resources held by the resource. -
getURL
Deprecated.Description copied from class:Resource
URL representing the resource. -
getURI
Deprecated.Description copied from class:Resource
URI representing the resource. -
toString
Deprecated.
-
PathResource