public class ClasspathResource extends AbstractResource implements Serializable
Resource based on a classpath entry| Constructor and Description |
|---|
ClasspathResource(String resourcePath) |
| Modifier and Type | Method and Description |
|---|---|
OutputStream |
append()
Opens up an
OutputStream to append to the resource. |
protected ClassLoader |
getClassLoader() |
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.
|
String |
getResourcePath()
Gets the name of the classpath entry
|
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 ClasspathResource(String resourcePath)
public String toString()
toString in class AbstractResourcepublic String getResourcePath()
public String getName()
Resourcepublic String getQualifiedPath()
ResourcegetQualifiedPath in interface Resourceprotected ClassLoader getClassLoader()
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 boolean isReadOnly()
ResourceisReadOnly in interface Resourcepublic boolean isExists()
Resourcepublic long getSize()
Resourcepublic long getLastModified()
ResourcegetLastModified 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 ResourceResourceExceptionCopyright © 2007–2019 The Apache Software Foundation. All rights reserved.