I am writing a JAVA program for work that at some point needs to transfer files from the machine it is running on to another machine. The requirements are such that it can be configured to either do the transfer over FTP, SFTP, or a connection where the authentication is secure but data is transferred unencrypted.
Implementing the first two shouldn't be too bad with third party JAVA libraries. The issue I am having is with the third option. Seems like the only way to do that is by tunneling FTP over SSH.
As I am fairly inexperienced in this matter, wondering if anyone has any helpful suggestions. This can be done using either a reliable JAVA library (preferred) or some other tool that I just call as a separate process from within the program.
thanks