Class FileSystemResource
- java.lang.Object
- org.springframework.core.io.AbstractResource
- org.springframework.core.io.FileSystemResource
- All Implemented Interfaces:
InputStreamSource,Resource,WritableResource
public class FileSystemResource extends AbstractResource implements WritableResource
Resourceimplementation forjava.io.Fileandjava.nio.file.Pathhandles with a file system target. Supports resolution as aFileand also as aURL. Implements the extendedWritableResourceinterface.Note: As of Spring Framework 5.0, this
Resourceimplementation uses NIO.2 API for read/write interactions. As of 5.1, it may be constructed with aPathhandle in which case it will perform all file system interactions via NIO.2, only resorting toFileongetFile().- Since:
- 28.12.2003
- Author:
- Juergen Hoeller
- See Also:
FileSystemResource(String),FileSystemResource(File),FileSystemResource(Path),File,Files
Constructor Summary
Constructors Constructor Description FileSystemResource(File file)Create a newFileSystemResourcefrom aFilehandle.FileSystemResource(String path)Create a newFileSystemResourcefrom a file path.FileSystemResource(FileSystem fileSystem, String path)Create a newFileSystemResourcefrom aFileSystemhandle, locating the specified path.FileSystemResource(Path filePath)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longcontentLength()This implementation returns the underlying File/Path length.ResourcecreateRelative(String relativePath)This implementation creates a FileSystemResource, applying the given path relative to the path of the underlying file of this resource descriptor.booleanequals(Object other)This implementation compares the underlying File references.booleanexists()This implementation returns whether the underlying file exists.StringgetDescription()This implementation returns a description that includes the absolute path of the file.FilegetFile()This implementation returns the underlying File reference.StringgetFilename()This implementation returns the name of the file.InputStreamgetInputStream()This implementation opens a NIO file stream for the underlying file.OutputStreamgetOutputStream()This implementation opens a FileOutputStream for the underlying file.StringgetPath()Return the file path for this resource.URIgetURI()This implementation returns a URI for the underlying file.URLgetURL()This implementation returns a URL for the underlying file.inthashCode()This implementation returns the hash code of the underlying File reference.booleanisFile()This implementation always indicates a file.booleanisReadable()This implementation checks whether the underlying file is marked as readable (and corresponds to an actual file with content, not to a directory).booleanisWritable()This implementation checks whether the underlying file is marked as writable (and corresponds to an actual file with content, not to a directory).longlastModified()This implementation returns the underlying File/Path last-modified time.ReadableByteChannelreadableChannel()This implementation opens a FileChannel for the underlying file.WritableByteChannelwritableChannel()This implementation opens a FileChannel for the underlying file.Methods inherited from class org.springframework.core.io.AbstractResource
getFileForLastModifiedCheck, isOpen, toString
Constructor Detail
FileSystemResource
public FileSystemResource(String path)
Create a newFileSystemResourcefrom a file path.Note: When building relative resources via
createRelative(java.lang.String), it makes a difference whether the specified resource base path here ends with a slash or not. In the case of "C:/dir1/", relative paths will be built underneath that root: e.g. relative path "dir2" -> "C:/dir1/dir2". In the case of "C:/dir1", relative paths will apply at the same directory level: relative path "dir2" -> "C:/dir2".- Parameters:
path- a file path- See Also:
FileSystemResource(Path)
FileSystemResource
public FileSystemResource(File file)
Create a newFileSystemResourcefrom aFilehandle.Note: When building relative resources via
createRelative(java.lang.String), the relative path will apply at the same directory level: e.g. new File("C:/dir1"), relative path "dir2" -> "C:/dir2"! If you prefer to have relative paths built underneath the given root directory, use theconstructor with a file pathto append a trailing slash to the root path: "C:/dir1/", which indicates this directory as root for all relative paths.- Parameters:
file- a File handle- See Also:
FileSystemResource(Path),getFile()
FileSystemResource
public FileSystemResource(Path filePath)
Create a newFileSystemResourcefrom aPathhandle, performing all file system interactions via NIO.2 instead ofFile.In contrast to
PathResource, this variant strictly follows the generalFileSystemResourceconventions, in particular in terms of path cleaning andcreateRelative(String)handling.Note: When building relative resources via
createRelative(java.lang.String), the relative path will apply at the same directory level: e.g. Paths.get("C:/dir1"), relative path "dir2" -> "C:/dir2"! If you prefer to have relative paths built underneath the given root directory, use theconstructor with a file pathto append a trailing slash to the root path: "C:/dir1/", which indicates this directory as root for all relative paths. Alternatively, consider usingPathResource(Path)forjava.nio.path.Pathresolution increateRelative, always nesting relative paths.- Parameters:
filePath- a Path handle to a file- Since:
- 5.1
- See Also:
FileSystemResource(File)
FileSystemResource
public FileSystemResource(FileSystem fileSystem, String path)
Create a newFileSystemResourcefrom aFileSystemhandle, locating the specified path.This is an alternative to
FileSystemResource(String), performing all file system interactions via NIO.2 instead ofFile.- Parameters:
fileSystem- the FileSystem to locate the path withinpath- a file path- Since:
- 5.1.1
- See Also:
FileSystemResource(File)
Method Detail
exists
public boolean exists()
This implementation returns whether the underlying file exists.- Specified by:
existsin interfaceResource- Overrides:
existsin classAbstractResource- See Also:
File.exists()
isReadable
public boolean isReadable()
This implementation checks whether the underlying file is marked as readable (and corresponds to an actual file with content, not to a directory).- Specified by:
isReadablein interfaceResource- Overrides:
isReadablein classAbstractResource- See Also:
File.canRead(),File.isDirectory()
getInputStream
public InputStream getInputStream() throws IOException
This implementation opens a NIO file stream for the underlying file.- Specified by:
getInputStreamin interfaceInputStreamSource- Returns:
- the input stream for the underlying resource (must not be
null) - Throws:
FileNotFoundException- if the underlying resource doesn't existIOException- if the content stream could not be opened- See Also:
FileInputStream
isWritable
public boolean isWritable()
This implementation checks whether the underlying file is marked as writable (and corresponds to an actual file with content, not to a directory).- Specified by:
isWritablein interfaceWritableResource- See Also:
File.canWrite(),File.isDirectory()
getOutputStream
public OutputStream getOutputStream() throws IOException
This implementation opens a FileOutputStream for the underlying file.- Specified by:
getOutputStreamin interfaceWritableResource- Throws:
IOException- if the stream could not be opened- See Also:
FileOutputStream
getURL
public URL getURL() throws IOException
This implementation returns a URL for the underlying file.- Specified by:
getURLin interfaceResource- Overrides:
getURLin classAbstractResource- Throws:
IOException- if the resource cannot be resolved as URL, i.e. if the resource is not available as descriptor- See Also:
File.toURI()
getURI
public URI getURI() throws IOException
This implementation returns a URI for the underlying file.- Specified by:
getURIin interfaceResource- Overrides:
getURIin classAbstractResource- Throws:
IOException- if the resource cannot be resolved as URI, i.e. if the resource is not available as descriptor- See Also:
File.toURI()
isFile
public boolean isFile()
This implementation always indicates a file.- Specified by:
isFilein interfaceResource- Overrides:
isFilein classAbstractResource- See Also:
Resource.getFile()
getFile
public File getFile()
This implementation returns the underlying File reference.- Specified by:
getFilein interfaceResource- Overrides:
getFilein classAbstractResource- See Also:
InputStreamSource.getInputStream()
readableChannel
public ReadableByteChannel readableChannel() throws IOException
This implementation opens a FileChannel for the underlying file.- Specified by:
readableChannelin interfaceResource- Overrides:
readableChannelin classAbstractResource- Returns:
- the byte channel for the underlying resource (must not be
null) - Throws:
FileNotFoundException- if the underlying resource doesn't existIOException- if the content channel could not be opened- See Also:
FileChannel
writableChannel
public WritableByteChannel writableChannel() throws IOException
This implementation opens a FileChannel for the underlying file.- Specified by:
writableChannelin interfaceWritableResource- Returns:
- the byte channel for the underlying resource (must not be
null) - Throws:
FileNotFoundException- if the underlying resource doesn't existIOException- if the content channel could not be opened- See Also:
FileChannel
contentLength
public long contentLength() throws IOException
This implementation returns the underlying File/Path length.- Specified by:
contentLengthin interfaceResource- Overrides:
contentLengthin classAbstractResource- Throws:
IOException- if the resource cannot be resolved (in the file system or as some other known physical resource type)- See Also:
InputStreamSource.getInputStream()
lastModified
public long lastModified() throws IOException
This implementation returns the underlying File/Path last-modified time.- Specified by:
lastModifiedin interfaceResource- Overrides:
lastModifiedin classAbstractResource- Throws:
IOException- if the resource cannot be resolved (in the file system or as some other known physical resource type)- See Also:
AbstractResource.getFileForLastModifiedCheck()
createRelative
public Resource createRelative(String relativePath)
This implementation creates a FileSystemResource, applying the given path relative to the path of the underlying file of this resource descriptor.- Specified by:
createRelativein interfaceResource- Overrides:
createRelativein classAbstractResource- Parameters:
relativePath- the relative path (relative to this resource)- Returns:
- the resource handle for the relative resource
- See Also:
StringUtils.applyRelativePath(String, String)
getFilename
public String getFilename()
This implementation returns the name of the file.- Specified by:
getFilenamein interfaceResource- Overrides:
getFilenamein classAbstractResource- See Also:
File.getName()
getDescription
public String getDescription()
This implementation returns a description that includes the absolute path of the file.- Specified by:
getDescriptionin interfaceResource- See Also:
File.getAbsolutePath()
equals
public boolean equals(@Nullable Object other)
This implementation compares the underlying File references.- Overrides:
equalsin classAbstractResource- See Also:
Resource.getDescription()
hashCode
public int hashCode()
This implementation returns the hash code of the underlying File reference.- Overrides:
hashCodein classAbstractResource- See Also:
Resource.getDescription()