I have a File type array which is converted one by one into String type now i want to make an array of all converted string. Don't know how to and stuck here
Code:
FTPFile[] files = client.list();
for (FTPFile file : files) {
System.out.println(file.getName());
//How to make an array of file.getName
Comment