My application is currently reading data by copying the file system tree from a remote machine through a shared drive, so it works like a deep copy of the file system from the point of view of the application.
This solution restricts somewhat, and I also want to support the second option - copy the subtree via http .
The library should do something like wget --recursive , which parses the list of directories and uses it to move around the tree.
I could not find any java library.
I can implement this functionality myself (using NekoHTML or something similar), but I don't like to reinvent the wheel.
Is there such a library that I can easily use in my application?
Perfectly:
- posted to Maven Central repository as I use Maven to build
- as much as possible depending on other libraries
- there is no need to support robot exclusion - it will work only on a limited set of intermediate servers
Thanks.
Note: send pointers to the home pages of the libraries that you personally used.
source share