Reputation: 1096
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
Upvotes: 3
Views: 9072
Reputation: 46070
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.
Upvotes: 3