|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.mortbay.resource.Resource org.mortbay.resource.URLResource org.mortbay.resource.FileResource
public class FileResource
File Resource. Handle resources of implied or explicit file type. This class can check for aliasing in the filesystem (eg case insensitivity). By default this is turned on, or it can be controlled with the "org.mortbay.util.FileResource.checkAliases" system parameter.
Field Summary |
---|
Fields inherited from class org.mortbay.resource.URLResource |
---|
_connection, _in, _url, _urlString |
Fields inherited from class org.mortbay.resource.Resource |
---|
__defaultUseCaches |
Constructor Summary | |
---|---|
FileResource(URL url)
|
Method Summary | |
---|---|
Resource |
addPath(String path)
Returns the resource contained inside the current resource with the given name |
boolean |
delete()
Deletes the given resource |
String |
encode(String uri)
Encode according to this resource type. |
boolean |
equals(Object o)
|
boolean |
exists()
Returns true if the resource exists. |
URL |
getAlias()
|
static boolean |
getCheckAliases()
getCheckAliases. |
File |
getFile()
Returns an File representing the given resource or NULL if this is not possible. |
InputStream |
getInputStream()
Returns an input stream to the resource |
String |
getName()
Returns the name of the resource |
OutputStream |
getOutputStream()
Returns an output stream to the resource |
int |
hashCode()
|
boolean |
isDirectory()
Returns true if the respresenetd resource is a container/directory. |
long |
lastModified()
Returns the last modified time |
long |
length()
Return the length of the resource |
String[] |
list()
Returns a list of resources contained in the given resource |
boolean |
renameTo(Resource dest)
Rename the given resource |
static void |
setCheckAliases(boolean checkAliases)
setCheckAliases. |
Methods inherited from class org.mortbay.resource.URLResource |
---|
checkConnection, getURL, getUseCaches, release, toString |
Methods inherited from class org.mortbay.resource.Resource |
---|
finalize, getAssociate, getDefaultUseCaches, getListHTML, newClassPathResource, newClassPathResource, newResource, newResource, newResource, newResource, newSystemResource, setAssociate, setDefaultUseCaches, writeTo |
Methods inherited from class java.lang.Object |
---|
clone, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public FileResource(URL url) throws IOException, URISyntaxException
IOException
URISyntaxException
Method Detail |
---|
public static void setCheckAliases(boolean checkAliases)
checkAliases
- True of resource aliases are to be checked for (eg case insensitivity or 8.3 short names) and treated as not found.public static boolean getCheckAliases()
public Resource addPath(String path) throws IOException, MalformedURLException
URLResource
addPath
in class URLResource
path
- The path segment to add, which should be encoded by the
encode method.
IOException
MalformedURLException
public URL getAlias()
getAlias
in class Resource
public boolean exists()
exists
in class URLResource
public long lastModified()
lastModified
in class URLResource
public boolean isDirectory()
isDirectory
in class URLResource
public long length()
length
in class URLResource
public String getName()
getName
in class URLResource
public File getFile()
getFile
in class URLResource
public InputStream getInputStream() throws IOException
getInputStream
in class URLResource
IOException
public OutputStream getOutputStream() throws IOException, SecurityException
getOutputStream
in class URLResource
IOException
SecurityException
public boolean delete() throws SecurityException
delete
in class URLResource
SecurityException
public boolean renameTo(Resource dest) throws SecurityException
renameTo
in class URLResource
SecurityException
public String[] list()
list
in class URLResource
public String encode(String uri)
encode
in class Resource
uri
- URI to encode.
public boolean equals(Object o)
equals
in class URLResource
o
-
true
of the object o
is a FileResource
pointing to the same file as this resource.public int hashCode()
hashCode
in class URLResource
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |