What is the best way to retrieve a file from a server using SFTP (as opposed to FTPS) using Java? I'll leave the particular definition of best up to you but in my mind it should include free :)
|
feedback
|
|
Another option is to consider looking at the JSch library. JSch seems to be the preferred library for a few large open source projects, including Eclipse, Ant and Apache Commons HttpClient, amongst others. It supports both user/pass and certificate-based logins nicely, as well as all a whole host of other yummy SSH2 features. Here's a simple remote file retrieve over SFTP. Error handling is left as an exercise for the reader :-)
| |||||||||
feedback
|
|
Here is the complete source code of an example using JSch without having to worry about the ssh key checking.
| |||
|
feedback
|
|
This was the solution I came up with http://sourceforge.net/projects/sshtools/ (most error handling omitted for clarity). This is an excerpt from my blog
| |||||||
feedback
|
|
Below is an example using Apache Common VFS:
| |||
|
feedback
|
|
A nice abstraction on top of Jsch is Apache commons-vfs which offers a virtual filesystem API that makes accessing and writing SFTP files almost transparent. Worked well for us. | |||||||
feedback
|
|
I use this SFTP API called Zehon, it's great, so easy to use with a lot of sample code. Here is the site http://www.zehon.com | |||
|
feedback
|
|
I found complete working example for SFTP in java using JSCH API http://vigilance.co.in/java-program-for-uploading-file-to-sftp-server/ | |||
|
feedback
|
|
Andy , to delete file on remote system,you need to use (channelExec) of JSch and pass unix/linux commands to delete it. | |||
|
feedback
|
|
You also have JFileUpload with SFTP add-on (Java too): http://www.jfileupload.com/products/sftp/index.html | |||
|
feedback
|
|
Try edtFTPj/PRO, a mature, robust SFTP client library that supports connection pools and asynchronous operations. Also supports FTP and FTPS so all bases for secure file transfer are covered. | ||||
|
feedback
|
|
sshj has a complete implementation of SFTP version 3 (what OpenSSH implements) | |||
|
feedback
|
protected by Community♦ May 31 '11 at 14:24
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.