Class VFSFileSystem
java.lang.Object
org.apache.commons.configuration2.io.FileSystem
org.apache.commons.configuration2.io.DefaultFileSystem
org.apache.commons.configuration2.io.VFSFileSystem
FileSystem that uses Apache Commons VFS.
- Since:
- 1.7
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetBasePath
(String path) Gets the base path of the given path, for example a directory for a file.getFileName
(String path) Gets the file name of the given path.getInputStream
(URL url) Gets an input stream for a URL.getOutputStream
(URL url) Gets an output stream for a URL.Gets a path string for the given input where some values may be null.Gets a URL for a base path and file name.locateFromURL
(String basePath, String fileName) Locates a URL for a base path and file name.Methods inherited from class org.apache.commons.configuration2.io.DefaultFileSystem
getInputStream, getOutputStream
Methods inherited from class org.apache.commons.configuration2.io.FileSystem
getFileOptionsProvider, getLogger, setFileOptionsProvider, setLogger
-
Constructor Details
-
VFSFileSystem
public VFSFileSystem()
-
-
Method Details
-
getBasePath
Description copied from class:FileSystem
Gets the base path of the given path, for example a directory for a file.- Overrides:
getBasePath
in classDefaultFileSystem
- Parameters:
path
- the source path.- Returns:
- the base path.
-
getFileName
Description copied from class:FileSystem
Gets the file name of the given path.- Overrides:
getFileName
in classDefaultFileSystem
- Parameters:
path
- the source path.- Returns:
- the file name.
-
getInputStream
Description copied from class:FileSystem
Gets an input stream for a URL.- Overrides:
getInputStream
in classDefaultFileSystem
- Parameters:
url
- the source URL.- Returns:
- an input stream.
- Throws:
ConfigurationException
- if an problem occurs getting the input stream.
-
getOutputStream
Description copied from class:FileSystem
Gets an output stream for a URL.- Overrides:
getOutputStream
in classDefaultFileSystem
- Parameters:
url
- the source URL.- Returns:
- an output stream.
- Throws:
ConfigurationException
- if an problem occurs getting the output stream.
-
getPath
Description copied from class:FileSystem
Gets a path string for the given input where some values may be null.The implementation decides on which argument take precedence.
- Overrides:
getPath
in classDefaultFileSystem
- Parameters:
file
- A file.url
- A URL.basePath
- A base path string.fileName
- A file name.- Returns:
- A path string.
-
getURL
Description copied from class:FileSystem
Gets a URL for a base path and file name.- Overrides:
getURL
in classDefaultFileSystem
- Parameters:
basePath
- The base path.file
- The file name.- Returns:
- a URL.
- Throws:
MalformedURLException
- if a problem occurs creating the URL.
-
locateFromURL
Description copied from class:FileSystem
Locates a URL for a base path and file name.- Overrides:
locateFromURL
in classDefaultFileSystem
- Parameters:
basePath
- The base path.fileName
- The file name.- Returns:
- a URL.
-