通过HTTP使用common - vfs



我正在尝试浏览和检索文件从HTTP服务器使用Commons VFS实现目录浏览功能,找到下面我的代码片段,

try {
    StandardFileSystemManager manager = new StandardFileSystemManager();
    manager.addProvider("http", new HttpFileProvider());
    manager.setCacheStrategy(CacheStrategy.ON_CALL);
    manager.setFilesCache(new SoftRefFilesCache());
    FileObject fileObject = manager.resolveFile("http://localhost");
    System.out.println(fileObject.getChildren());
} catch (FileSystemException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

但是当我运行这段代码时,我得到以下异常,

org.apache.commons.vfs.FileSystemException: Could not list the contents of "http://localhost/" because it is not a folder.
at org.apache.commons.vfs.provider.AbstractFileObject.getChildren(AbstractFileObject.java:527)
at org.apache.commons.vfs.impl.DecoratedFileObject.getChildren(DecoratedFileObject.java:105)
at org.apache.commons.vfs.cache.OnCallRefreshFileObject.getChildren(OnCallRefreshFileObject.java:105)
at VFSClient.main(VFSClient.java:31)

但是服务器已经启动并运行,我可以浏览目录。

谁能告诉我这个错误的原因,我错过了什么吗?

考虑在FS2上实现一个简单的具体的回购。FS2是一个中间件api,它处理文件系统中需要的所有CRUD等操作,但可以相对容易地由任何持久机制提供支持。

HTTP似乎不支持LIST_CHILDREN:

fileObject.getFileSystem().hasCapability(Capability.LIST_CHILDREN)

将返回false

你使用的是什么版本的VFS ?也许2.0版本会有所帮助。文件是这样说的:http://commons.apache.org/vfs/filesystems.html

与文档所说的相反,我认为这还没有实现。看看https://issues.apache.org/jira/browse/VFS-199

相关内容

  • 没有找到相关文章

最新更新