Java-Android Class for Upload File to Server by FTP ( http://www.jibble.org/simpleftp/ )
this is simple java class for upload file to FTP with your ftp user and password .
- first download simpleFtp.jar from http://www.jibble.org/files/simpleftp.jar .
- after this add FtpClient.java class from this repository.
- then add below AsyncTask class to your activity .
- then new the class in your code :
File destination = new File(...);
new upload(destination, getBaseContext()).execute();