项目作者: alirezanazari

项目描述 :
Java-Android Class for Upload File to Server by FTP
高级语言: Java
项目地址: git://github.com/alirezanazari/FtpClient.git
创建时间: 2017-05-08T07:55:23Z
项目社区:https://github.com/alirezanazari/FtpClient

开源协议:GNU General Public License v3.0

下载


FtpClient

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 .

How

  • 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();