Tagged Questions
Apache Commons VFS is a Java library for accessing files from different sources (local, HTTP, inside zip files, etc.) with a uniform API.
3
votes
0answers
288 views
Getting Special folders to work in Apache Commons VFS
VFS unable to support special windows folders (Network, recent, computer, libraries, etc).
File[] cbFolders = (File[])sun.awt.shell.ShellFolder.get("fileChooserComboBoxFolders");
and then ...
2
votes
1answer
211 views
Apache Commons VFS with Quercus
On an unmodified install, how can I configure Quercus so that PHP file functions use Apache Commons VFS to access files?
2
votes
5answers
3k views
Commons VFS and Java.net.URL - Adding support for “sftp://” protocol
We're trying to use Apache Commons VFS to access something over SFTP. It claims to support SFTP, however we're getting a MalformedURLException when it starts. Digging around I see that apache vfs is ...
1
vote
0answers
50 views
SSH URI error with Apache VFS
I'm getting the following error in an Android application with Apache VFS and I can't find much on the google to help. I'm trying to upload a file via SSH and I get this rather vague error. The URI, ...
1
vote
1answer
71 views
On doing BufferedReader.readLine() : Unexpected end of ZILB input stream
I am trying to read one line at a time using bufferedReader like following
BufferedReader.readLine()
and I am getting the following stack trace.
java.io.EOFException: Unexpected end of ZLIB ...
1
vote
1answer
151 views
Commons vfs findFiles imaginary file
In my quartz job I want to read csv files from directory using commons-vfs.
try {
FileSystemManager fsManager = VFS.getManager();
final FileObject fileObject = ...
1
vote
1answer
76 views
Apache VFS resolveFile with regex
If I have a directory called temp with the following files:
a_file1.jpg
a_file2.jpg
b_file1.jpg
b_file2.jpg
It's possible to get all files like this:
...
1
vote
2answers
127 views
Using Commons-VFS over HTTP
I am trying to browse and retrieve files from an HTTP server using the Commons VFS to implement the directory browsing functionality, find below my code snippet,
try {
...
1
vote
1answer
143 views
Commons-vfs mocking up a filesystem
I'm trying to use commons-vfs as a filesystem wrapper in order to more easily unit test some code that needs to touch the filesystem. Right now I'm just getting familiar with the API. What I would ...
1
vote
1answer
768 views
Apache Commons VFS: working with FTP
I'm trying to use Apache Commons VFS with FTP. On my FTP a have the next structure of files and folders:
/
/test
/test/in
/test/in/file1.txt
/test/in/file2.txt
I need to connect and read all files ...
1
vote
1answer
515 views
Apache CommonsVFS connect to https server
Currently I use Apache CommonsVFS to fetch images from other sites and it works well.
The website of CommonsVFS says it supports HTTPS protocol, but I found I could not access those URL starts with ...
1
vote
2answers
585 views
Trying to set up Amazon S3 filesystem in Apache Commons VFS in java
I'm trying to use VFS S3 a plugin for the Apache Commons VFS for Amazon S3.
I've included the jar and it's recognising the s3 schema.
However when I try to open a file (which is public, I can open ...
1
vote
2answers
415 views
Integration of apache common vfs and mercurial
Can Apache common vfs api retrieve/update/add files from/to the Mercurial version control system? Common vfs does have an interface api for accessing vcs. Is there a provider for Mercurial?
hbagchi
0
votes
0answers
41 views
apache commons vfs throws java.io.EOFException: Unexpected end of ZLIB input stream
I am currently working with apache commons vfs 2.0 for reading csv files inside Zip files. Everything works fine but sometimes during reading the csv file line by line it's throwing the follwoing ...
0
votes
1answer
158 views
Apache Commons VFS - cannot resolveFile
The VFS method cannot process this URI ${jboss.server.temp.dir}/local/outgoing configured in jboss-beans.xml which is resolved to "C:\\Download\\jboss-eap-5.1.1\\server\\default\\tmp/local/outgoing" ...
0
votes
0answers
111 views
FTP processing that uses Apache.commons.vfs
I have a question concerning VFS.
I mounted the FTP by using Apache.commons.vfs.
However, it takes time to the FTP processing.
Please teach the method of doing the FTP processing early.
fsm = ...
0
votes
0answers
36 views
use vfs to get update from remote file
i get an requirement to write a tool.
it is used to receive continuous updates from remote log file(i have sftp or ssh access to that server), then will do some process for the log.
the ideal thing ...
0
votes
0answers
39 views
Does ApacheVFS ftp support random access writing?
I have searched the issue tracker and other places and there does not appear to be any definitive answer to this. I have checked the capabilities for ftp and it appears that random writing is not ...
0
votes
0answers
97 views
apache VFS with res and zip together
I would expect this work.
FileSystemManager fileSystemManager = VFS.getManager();
FileObject fileObject = fileSystemManager.resolveFile("zip:res:hello.zip");
But I'm getting URI "res:hello.zip" ...
0
votes
0answers
120 views
apache commons VFS - authentication problems
This is my code (taken from an example):
FileSystemManager fsManager = VFS.getManager();
StaticUserAuthenticator auth = new
StaticUserAuthenticator(null,"yossarian99","bigsecret");
...
0
votes
1answer
154 views
How to get a list of files to be downloaded using HttpClient or Commons VFS?
I would want to know if there any another way to get a list of files to be downloaded from HttpServer,other than parsing the response using HttpClient.
I would also like to know if Commonns VFS is a ...
0
votes
1answer
705 views
sftp with mutual auth using apache vfs
We're trying to sftp to a server that requires mutual authentication. We need to do this programmatically in java.
Is there a way to use mutual authentication (client certificates) with apache vfs ...
0
votes
1answer
506 views
How to check if FileObject is folder?
I'm using Apache Commons VFS (Virtual File System) to access some files over SFTP. Does anybody know how to check if an instance of org.apache.commons.vfs.FileContent is folder?