[Kotlin] FTP 접속 후 파일 다운로드
FTP 접속을 위해서 라이브러리 사용을 위해 build.gradle.kts에 아래와 같이 의존성을 주입해준다.implementation("commons-net:commons-net:3.9.0") 우선 로그인까지 해본다."hostname.com"에는 접속할 FTP 주소를, "username"에는 아이디, "password"에는 비밀번호를 입력한다.import org.apache.commons.net.ftp.FTPimport org.apache.commons.net.ftp.FTPClientimport org.apache.commons.net.ftp.FTPReplyclass Service { fun download() { val ftpClient = FTPClient() try..
Kotlin & JPA
2024. 6. 11. 09:40