URL url = new URL("ftp://user:[email protected]/thefolder/");
URLConnection connection = url.openConnection();
...
// List files in folder...
上記のようなものを使用して、私はフォルダ「thefolder」内のファイルのリストをどのように取得できたのだろうか?URLConnection FTPリストファイル
こんにちはみんな、この元の質問に続き
、私は一緒にすべての作業と 格好良いです、この単純なFTP接続を入れています。/live/conf/locationにあるすべてのファイルを表示し、それらをすべてローカル/ conf /ロケーションにコピーします。 唯一の問題は、ファイルをコピーしていますが、コンテンツはありません。すべて0KBで空です!
誰でも、ファイルの内容をコピーすることはできますが、ファイルの内容はコピーしないでください。
乾杯
KPS
try {
FTPClient ftp = new FTPClient();
ftp.connect("000.000.000.000");
ftp.login("USER", "PASSWORD");
ftp.enterLocalPassiveMode();
ftp.setFileType(FTP.BINARY_FILE_TYPE);
FTPFile[] files = ftp.listFiles("/live/conf/");
for (int i=0; i < files.length; i++) {
if (files[i].getName().contains(".csv")) {
String remoteFile1 = files[i].getName();
File downloadFile1 = new File("/var/local/import/conf/"+files[i].getName());
OutputStream outputStream1 = new BufferedOutputStream(new FileOutputStream(downloadFile1));
ftp.retrieveFile(remoteFile1, outputStream1);
outputStream1.close();
}
}
ftp.disconnect();
} catch (SocketException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
専用のFTPクライアントライブラリがあり、あなたがより良いこれを使用していた、それははるかに容易になります。 – fge