如何从服务器获取文件名,我需要检查服务器文件夹中显示的所有文件
答案 0 :(得分:0)
RemoteFileTemplate
就此问题适合您:
/**
* List the files at the remote path.
* @param path the path.
* @return the list.
*/
F[] list(String path);
如果是FTP,它会委托给org.apache.commons.net.ftp.FTPClient.listFiles()
。
虽然是,但您可以直接使用FTPClient
进行此类操作。
您还可以尝试DefaultFtpSessionFactory
和getSession().listNames(path)
。