2023. 1. 17.

Apache Commons Net FTP 연결이 안될 때

연결을 시도해도 파일의 용량이 0이 되는 현상

사용법이 친절하게 설명된 게 아니라서 찾는데 애 좀 먹었었다. 초기에 모드에 대한 부분을 꼭 작성해야 한다.

// Use passive mode as default because most of us are
// behind firewalls these days.
if (localActive) {
    ftp.enterLocalActiveMode();
} else {
    ftp.enterLocalPassiveMode();
}
출처: https://commons.apache.org/proper/commons-net/
https://commons.apache.org/proper/commons-net/examples/ftp/FTPClientExample.java

import org.apache.commons.net.ftp.FTPClient;

public class FTP_Connector {
  public static void main(String args[]) throws IOException {
    FTPClient ftp_client = new FTPClient();
    ftp_client.enterLocalPassiveMode();
  }
}