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 .
Asked
Active
Viewed 1,125 times
1
-
1Have you changed your server? If you have does your new server support append? – Sid Malani Nov 25 '11 at 12:54
-
yes,i have changed my server and it supports append, as i have testing it with isResumeSupported() method and it is returning true. – Sujit Nov 25 '11 at 12:59
-
The Apache commons net library also supports FTP with append mode. – scai Jun 23 '16 at 20:17
1 Answers
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.

aled
- 21,330
- 3
- 27
- 34