Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All,
I am new to FTP and SFTP Protocols.I need to send files to SFTP Server from an android client..


1)Does android has SFTP support in-built in SDK ?


2)If not, how do i accomplish the same in Android??


3)Any useful Link or Lib or App will help me


Thanks in advance

NITZ

share|improve this question

1 Answer

There's no built-in SFTP support in Android SDK, but there exists a fair number of Java classes for SSH/SFTP capable of doing FTP and SFTP including our SecureBlackbox (Java edition), JSch (SFTP only, no FTP/FTPS) and some others mentioned in this question.

NOTE: SFTP and FTP are completely different protocols.

share|improve this answer
Mayevski 'EldoS thanks for your reply..Is SecureBlackbox free??..open source classes would be helpfull!!!! – NitZRobotKoder Jun 6 '12 at 9:29
@NitZRobotKoder I had hard time trying to find anything open-source with Android support. – Eugene Mayevski 'EldoS Corp Jun 6 '12 at 9:49
1  
@Mayevski 'EldoS so u mean to say no free SFTP Library Available??? – NitZRobotKoder Jun 6 '12 at 16:45
1  
@NitZRobotKoder Seems that JSch can be used on Android. I've updated my answer. – Eugene Mayevski 'EldoS Corp Jun 7 '12 at 7:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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