Try using passive mode . I assume that you are using the latest commons net library (you did not write which library you are using).
Next approach, try changing the layout of the file list. Commons lib uses automatic detection, but in some cases this does not work. You can change (and check) another file list format as follows:
FTPClientConfig configuration = new FTPClientConfig(FTPClientConfig.TEST_YOURSELF); FTPClient yourClient = FTPClient(...); client.configure(conf);
source share