Skip to main content

All Questions

0 votes
0 answers
282 views

Some downloaded files are missing bytes (Apache Commons FTPClient) [duplicate]

This is a continuation of my other question because I noticed that other file types are affected too (not only images). My Android app (Java 8, min SDK 24, target SDK 27) downloads images (jpg,png) ...
Neph's user avatar
  • 1,941
1 vote
0 answers
599 views

Downloaded images are missing bytes

My Android app (Java 8, min SDK 24, target SDK 27) downloads images from an FTP server, using Apache's FTPClient (version 3.6). There are a couple of smaller .jpg images (around 12kb each) that ...
Neph's user avatar
  • 1,941
0 votes
0 answers
35 views

Problems with download files from different directories with FTP library Apache Commons

I'm working on an application which download images from a FTP server, I'm using the library: Apache commons. What I want to do is download every image from a tree of directories like this: -iTable ...
Jack Moe's user avatar
0 votes
1 answer
665 views

FTPClient Java speedup download

What is the max download-speed with 1 thread of apaches FTPClient? I'm not able to get more, than about 6mb/s with an FPTSClient connection (AUTH SSL). When i connect via an Ftp Tool like FTP Rush im ...
PinkyTV's user avatar
  • 118
1 vote
2 answers
7k views

File Download from a FTP Server using apache FTPClient

I am using apache's FTPClient to download files from a FTP server. My scenario is - the FTP server can loose network connectivity and may remain disconnected for a max of 1 day. When it connects back, ...
Anirban's user avatar
  • 589
2 votes
1 answer
4k views

Android: How to download a ftp file without being corrupted?

This code is working now. LogCat only for lead back problems from other ppl How can I download a file from my ftp server without beeing damaged (the downloaded file)? I can download the file but it ...
Marco Seiz's user avatar
9 votes
1 answer
10k views

Monitoring progress using Apache Commons FTPClient

I have a simple FTPClient class that downloads files form an FTP server. I also need to monitor progress of the download, but I do not see a way how. The actually download files function is a simple ...
Christian Green's user avatar