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 hierarchical 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, write
public SpringResource(org.springframework.core.io.Resource resource)
public OutputStream append() throws ResourceException
Resource
OutputStream
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 Resource
ResourceException
public OutputStream write() throws ResourceException
Resource
OutputStream
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 Resource
ResourceException
public long getLastModified()
Resource
getLastModified
in interface Resource
public String getName()
Resource
public String getQualifiedPath()
Resource
getQualifiedPath
in interface Resource
public long getSize()
Resource
public boolean isExists()
Resource
public boolean isReadOnly()
Resource
isReadOnly
in interface Resource
public InputStream read() throws ResourceException
Resource
InputStream
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 Resource
ResourceException
public org.springframework.core.io.Resource getResource()
Resource
object.Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.