vote up 2 vote down star

What is the best method of performing an scp transfer via the Java programming language? It seems I may be able to perform this via JSSE, JSch or the bouncy castle java libraries. None of these solutions seem to have an easy answer.

flag
can you break down the issues that you have with the various libraries, why they don't work for you? – Tim Howland Oct 14 '08 at 1:23

4 Answers

vote up 4 vote down check

I ended up using Jsch- it was pretty straightforward, and seemed to scale up pretty well (I was grabbing a few thousand files every few minutes).

link|flag
jsch turned out to be the better alternative, but the documentation is horrible. The tip from Abarax to look at ants scp task was very helpful. It's really not clear if the project is still very active. Thanks for the tip. – Lloyd Meinholz Oct 19 '08 at 1:11
vote up 0 vote down

I use this SFTP API which has SCP called Zehon, it's great, so easy to use with a lot of sample code. Here is the site http://www.zehon.com

link|flag
vote up 2 vote down

Take a look here

That is the source code for Ants' SCP task. The code in the "execute" method is where the nuts and bolts of it are. This should give you a fair idea of what is required. It uses JSch i believe.

Alternatively you could also directly execute this Ant task from your java code.

link|flag
vote up 2 vote down

The openssh project lists several Java alternatives, Trilead SSH for Java seems to fit what you're asking for.

link|flag
Trilead seem much more mature than Jsch, but was lacking with sftp and scp support, which is what I was after. Currently, sftp only supported get and put (I need ls and rm also) and scp support was listed as experiental. – Lloyd Meinholz Oct 19 '08 at 1:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.