public class VfsResource extends AbstractResource
Resource implementation.
Supports the corresponding VFS API versions on JBoss AS 5.x as well as 6.x and 7.x.org.jboss.virtual.VirtualFile,
org.jboss.vfs.VirtualFile| 构造器和说明 |
|---|
VfsResource(Object resources) |
| 限定符和类型 | 方法和说明 |
|---|---|
long |
contentLength()
This implementation reads the entire InputStream to calculate the
content length.
|
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 returns
null,
assuming that this resource type does not have a filename. |
InputStream |
getInputStream()
Return an
InputStream. |
URI |
getURI()
This implementation builds a URI based on the URL returned
by
AbstractResource.getURL(). |
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.
|
boolean |
isReadable()
This implementation always returns
true. |
long |
lastModified()
This implementation checks the timestamp of the underlying File,
if available.
|
getFileForLastModifiedCheck, isOpen, toStringpublic VfsResource(Object resources)
public InputStream getInputStream() throws IOException
InputStreamSourceInputStream.
It is expected that each call creates a fresh stream.
This requirement is particularly important when you consider an API such
as JavaMail, which needs to be able to read the stream multiple times when
creating mail attachments. For such a use case, it is required
that each getInputStream() call returns a fresh stream.
null)IOException - if the stream could not be opened
·public boolean exists()
AbstractResourceexists 在接口中 Resourceexists 在类中 AbstractResourcepublic boolean isReadable()
AbstractResourcetrue.isReadable 在接口中 ResourceisReadable 在类中 AbstractResourceInputStreamSource.getInputStream()public URL getURL() throws IOException
AbstractResourcegetURL 在接口中 ResourcegetURL 在类中 AbstractResourceIOException - if the resource cannot be resolved as URL,
i.e. if the resource is not available as descriptorpublic URI getURI() throws IOException
AbstractResourceAbstractResource.getURL().getURI 在接口中 ResourcegetURI 在类中 AbstractResourceIOException - if the resource cannot be resolved as URI,
i.e. if the resource is not available as descriptorpublic File getFile() throws IOException
AbstractResourcegetFile 在接口中 ResourcegetFile 在类中 AbstractResourceIOException - if the resource cannot be resolved as absolute
file path, i.e. if the resource is not available in a file systempublic long contentLength()
throws IOException
AbstractResourcecontentLength 在接口中 ResourcecontentLength 在类中 AbstractResourceIOException - if the resource cannot be resolved
(in the file system or as some other known physical resource type)InputStreamSource.getInputStream()public long lastModified()
throws IOException
AbstractResourcelastModified 在接口中 ResourcelastModified 在类中 AbstractResourceIOException - if the resource cannot be resolved
(in the file system or as some other known physical resource type)AbstractResource.getFileForLastModifiedCheck()public Resource createRelative(String relativePath) throws IOException
AbstractResourcecreateRelative 在接口中 ResourcecreateRelative 在类中 AbstractResourcerelativePath - the relative path (relative to this resource)IOException - if the relative resource cannot be determinedpublic String getFilename()
AbstractResourcenull,
assuming that this resource type does not have a filename.getFilename 在接口中 ResourcegetFilename 在类中 AbstractResourcepublic String getDescription()
ResourceImplementations are also encouraged to return this value
from their toString method.
Object.toString()public boolean equals(Object obj)
AbstractResourceequals 在类中 AbstractResourceResource.getDescription()public int hashCode()
AbstractResourcehashCode 在类中 AbstractResourceResource.getDescription()Copyright © 2018 jretty-org. All rights reserved.