How to display a list of files from an ftp server (or rather from a specific folder on this server) in the android application?

1 answer 1

Try using classes from the org.apache.commons.net.ftp library. Connection is made by class FTPClient :

 FTPClient mFTPClient = new FTPClient(); mFTPClient.connect(myAddress, myPort); 

You can take a look at a detailed example here.