Class UrlFileProvider
java.lang.Object
org.apache.commons.vfs2.provider.AbstractVfsComponent
org.apache.commons.vfs2.provider.AbstractVfsContainer
org.apache.commons.vfs2.provider.AbstractFileProvider
org.apache.commons.vfs2.provider.url.UrlFileProvider
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- FileProvider,- VfsComponent
A file provider backed by Java's URL API.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected static final Collection<Capability> The provider's capabilities
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfindFile(FileObject baseFile, String fileUri, FileSystemOptions fileSystemOptions) Locates a file object, by absolute URI.Gets the file system capabilities.Gets the FileSystemConfigBuilder.Methods inherited from class org.apache.commons.vfs2.provider.AbstractFileProvideraddFileSystem, close, closeFileSystem, createFileSystem, findFileSystem, freeUnusedResources, getFileNameParser, parseUri, setFileNameParserMethods inherited from class org.apache.commons.vfs2.provider.AbstractVfsContaineraddComponent, removeComponentMethods inherited from class org.apache.commons.vfs2.provider.AbstractVfsComponentgetContext, getLogger, init, setContext, setLogger
- 
Field Details- 
capabilitiesThe provider's capabilities
 
- 
- 
Constructor Details- 
UrlFileProviderpublic UrlFileProvider()Constructs a new instance.
 
- 
- 
Method Details- 
findFilepublic FileObject findFile(FileObject baseFile, String fileUri, FileSystemOptions fileSystemOptions) throws FileSystemException Locates a file object, by absolute URI.- Parameters:
- baseFile- The base FileObject.
- fileUri- The uri of the file to locate.
- fileSystemOptions- The FileSystemOptions
- Returns:
- The FileObject
- Throws:
- FileSystemException- if an error occurs.
 
- 
getCapabilitiesDescription copied from interface:FileProviderGets the file system capabilities.These are the same as on the file system, but available before the first file system was instantiated. - Returns:
- a Collection of the file systems Capabilities.
 
- 
getConfigBuilderDescription copied from class:AbstractFileProviderGets the FileSystemConfigBuilder.- Specified by:
- getConfigBuilderin interface- FileProvider
- Overrides:
- getConfigBuilderin class- AbstractFileProvider
- Returns:
- the FileSystemConfigBuilder.
 
 
-