我正在尝试使用commons vfs从http服务器浏览和检索文件,以实现目录浏览功能,请参见下面的代码片段,
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等操作,但可以相对容易地由任何持久性机制支持。
关于java - 通过HTTP使用Commons-VFS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6999300/