public class SpringResource extends AbstractResource implements Resource
Resource implementation based on spring's similar
Resource concept.| Constructor and Description |
|---|
SpringResource(org.springframework.core.io.Resource resource) |
| Modifier and Type | Method and Description |
|---|---|
OutputStream |
append()
Opens up an
OutputStream to append to the resource. |
long |
getLastModified()
Gets the last modified timestamp value (measured in milliseconds since
the epoch (00:00:00 GMT, January 1, 1970)) of the resource, if available.
|
String |
getName()
Gets the name of the resource, typically a filename or other identifying
string
|
String |
getQualifiedPath()
Gets the qualified path of the resource, which typically includes slash
or backslash separated nodes in a hierarical tree structure.
|
org.springframework.core.io.Resource |
getResource()
Gets the underlying spring
Resource
object. |
long |
getSize()
Gets the size (in number of bytes) of this resource's data.
|
boolean |
isExists()
Determines if the resource referenced by this object exists or not.
|
boolean |
isReadOnly()
Determines if the file is read only, or if writes are also possible.
|
InputStream |
read()
Opens up an
InputStream to read from the resource. |
OutputStream |
write()
Opens up an
OutputStream to write to the resource. |
append, read, read, read, toString, writepublic SpringResource(org.springframework.core.io.Resource resource)
public OutputStream append() throws ResourceException
ResourceOutputStream to append to the resource. Consumers of
this method are expected to invoke the OutputStream.close()
method manually.
If possible, the other append(...) method is preferred over this one,
since it guarantees proper closing of the resource's handles.append in interface ResourceResourceExceptionpublic OutputStream write() throws ResourceException
ResourceOutputStream to write to the resource. Consumers of
this method are expected to invoke the OutputStream.close()
method manually.
If possible, the other write(...) method is preferred over this one,
since it guarantees proper closing of the resource's handles.write in interface ResourceResourceExceptionpublic long getLastModified()
ResourcegetLastModified in interface Resourcepublic String getName()
Resourcepublic String getQualifiedPath()
ResourcegetQualifiedPath in interface Resourcepublic long getSize()
Resourcepublic boolean isExists()
Resourcepublic boolean isReadOnly()
ResourceisReadOnly in interface Resourcepublic InputStream read() throws ResourceException
ResourceInputStream to read from the resource. Consumers of
this method are expected to invoke the InputStream.close() method
manually.
If possible, the other read(...) methods are preferred over this one,
since they guarantee proper closing of the resource's handles.read in interface ResourceResourceExceptionpublic org.springframework.core.io.Resource getResource()
Resource
object.Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.