public class InMemoryResource extends AbstractResource implements Serializable
Resource.| Constructor and Description |
|---|
InMemoryResource(String path)
Constructs a new
InMemoryResource with a path/name |
InMemoryResource(String path,
byte[] contents,
long lastModified)
Constructs a new
InMemoryResource with a path/name and some
initial contents. |
| 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 |
getPath()
Gets the path of this resource
|
String |
getQualifiedPath()
Gets the qualified path of the resource, which typically includes slash
or backslash separated nodes in a hierarical tree structure.
|
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. |
String |
toString() |
OutputStream |
write()
Opens up an
OutputStream to write to the resource. |
public InMemoryResource(String path)
InMemoryResource with a path/namepath - public InMemoryResource(String path, byte[] contents, long lastModified)
InMemoryResource with a path/name and some
initial contents.path - contents - lastModified - public String toString()
toString in class AbstractResourcepublic String getName()
Resourcepublic String getQualifiedPath()
ResourcegetQualifiedPath in interface Resourcepublic String getPath()
public boolean isReadOnly()
ResourceisReadOnly in interface Resourcepublic boolean isExists()
Resourcepublic long getSize()
Resourcepublic long getLastModified()
ResourcegetLastModified in interface Resourcepublic 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 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 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 ResourceResourceExceptionCopyright © 2007–2019 The Apache Software Foundation. All rights reserved.