1

i want to upload files to FTP server from Android application . i am using ftp4j.jar for this as it has the append function to append to file which is already on server . It was working fine before but now it has stopped working appending file .Rest is working . I don't know what is the issue . I did't find any other substitute for ftp4j .

Sujit
  • 10,512
  • 9
  • 40
  • 45

1 Answers1

0

You can try Apache Commons Net FTPClient appendFile() methods as scai mentioned in the comments. I'm not sure how it works in Android.

https://commons.apache.org/proper/commons-net/apidocs/org/apache/commons/net/ftp/FTPClient.html#appendFile(java.lang.String,%20java.io.InputStream)

aled
  • 21,330
  • 3
  • 27
  • 34