• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Upload a file to FTP server in Android 4.X

Hello!

I'm trying to upload a file to FTP server in Android 4.X

This code works in Android 2.x but not in Android 4.X

I'm using the commons-net-3.3.jar library

FTPClient client = new FTPClient();
client.connect("ftp.whatever.com");
client.login("user", "password");


Can anyone help me to fix it to work in Android 4.X?

Thanks! :)
 
Back
Top Bottom