|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.springframework.core.io.AbstractResource
org.springframework.core.io.FileSystemResource
Resource implementation for java.io.File handles. Obviously supports resolution as File, and also as URL.
File| Field Summary |
| Fields inherited from class org.springframework.core.io.AbstractResource |
URL_PROTOCOL_FILE |
| Constructor Summary | |
FileSystemResource(File file)
Create a new FileSystemResource. |
|
FileSystemResource(String path)
Create a new FileSystemResource. |
|
| Method Summary | |
Resource |
createRelative(String relativePath)
This implementation throws a FileNotFoundException, assuming that relative resources cannot be created for this resource. |
boolean |
equals(Object obj)
This implementation compares description strings. |
boolean |
exists()
This implementation checks whether a File can be opened, falling back to whether an InputStream can be opened. |
String |
getDescription()
Return a description for this resource, to be used for error output when working with the resource. |
File |
getFile()
This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to an absolute file path. |
String |
getFilename()
This implementation always throws IllegalStateException, assuming that the resource does not carry a filename. |
InputStream |
getInputStream()
Return an InputStream. |
URL |
getURL()
This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to a URL. |
int |
hashCode()
This implementation returns the description's hash code. |
| Methods inherited from class org.springframework.core.io.AbstractResource |
isOpen, toString |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public FileSystemResource(File file)
file - a File handlepublic FileSystemResource(String path)
path - a file path| Method Detail |
public boolean exists()
AbstractResource
exists in interface Resourceexists in class AbstractResource
public InputStream getInputStream()
throws IOException
InputStreamSource
IOException - if the stream could not be opened
public URL getURL()
throws IOException
AbstractResource
getURL in interface ResourcegetURL in class AbstractResourceIOExceptionpublic File getFile()
AbstractResource
getFile in interface ResourcegetFile in class AbstractResourcepublic Resource createRelative(String relativePath)
AbstractResource
createRelative in interface ResourcecreateRelative in class AbstractResourcepublic String getFilename()
AbstractResource
getFilename in interface ResourcegetFilename in class AbstractResourcepublic String getDescription()
ResourceImplementations are also encouraged to return this value from their toString method.
Object.toString()public boolean equals(Object obj)
AbstractResource
equals in class AbstractResourceResource.getDescription()public int hashCode()
AbstractResource
hashCode in class AbstractResourceResource.getDescription()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||