後で使用するために作成した小さなテスト プログラムがあり、次のように、サーバーに接続してファイルを取得するだけです。
import org.apache.commons.net.ftp.*;
import java.io.*;
import java.net.SocketException;
public class Test {
private final String pass = [I removed this password];
FTPClient ftp;
File file = new File("download.txt");
private int reply;
FileOutputStream dfile;
public void ftp() {
try {
ftp = new FTPClient();
ftp.connect("ftp.bevilacqua.me");
ftp.login([i removed this username] ,[I removed this password]);
reply = ftp.getReplyCode();
if(FTPReply.isPositiveCompletion(reply)) {
System.out.println("Connected Success");
} else {
System.out.println("Connection unsuccessful");
ftp.disconnect();
}
if(file.exists()) {
System.out.println("File already exists");
}
dfile = new FileOutputStream(file);
ftp.retrieveFile("untitled.txt", dfile); //Untitled does exist in directory '/'
System.out.println("Success... maybe");
} catch(SocketException ex) {
ex.printStackTrace();
} catch(IOException ex) {
ex.printStackTrace();
}
}
public static void main(String[] args) {
Test main = new Test();
main.ftp();
try {
main.ftp.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
}
プログラムは Connected Success と File already exists を出力するため、取得ファイルである必要があります。プログラムはクラッシュせず、例外もスローされません。