티스토리 뷰
FTP Client 구현방법
- Java 파일 전송 시에 FTP 프로토콜로 FTP Server에 접속하여 파일을 전송하는 기능구현 방법을 공유하고자 한다.
구현방법
- FTP Server에 접속하여 대상파일 저장하는 기능이다.
public void doSend(final String ip,
final int port,
final String user,
final String password,
final File file,
final String targetDir) throws Exception {
FTPClient client = new FTPClient();
try (InputStream input = new FileInputStream(file)) {
String remoteFilePath = "/" + targetDir + "/" + file.getName();
client.connect(ip, port);
//FTP Server 로그인 수행
if (client.login(user, password)) {
client.setBufferSize(1000);
client.enterLocalPassiveMode();
client.setFileType(FTP.BINARY_FILE_TYPE);
client.mkd("/" + rootDir);
try {
//FTP Server에 파일 저장(전송)
if (!client.storeFile(remoteFilePath, input)) {
throw new Exception("File store failed");
}
} catch (Exception e) {
e.printStackTrace();
}
try {
//File Move 기능
//if (!client.rename(remoteTmp, remoteFilePath)) {
// throw new FileStoreFailedException("File Target store failed");
//}
} catch (Exception e) {
e.printStackTrace();
}
//FTP 서버 접속 해제
client.logout();
client.disconnect();
} else {
throw new Exception("Login Failed");
}
} catch (Exception e) {
client.logout();
client.disconnect();
throw e;
}
}
관련글
끝으로
이 글이 도움이 되었다면, 하단의 Google 광고 👎👎👎 한번씩 클릭 부탁 드립니다. 🙏🙏🙏
광고 클릭은 많은 힘이 됩니다!
반응형
'프로그래밍 > JAVA' 카테고리의 다른 글
(Java) Gmail SMTP 구현시 "AuthenticationFailedException: 535-5.7.8 Username and Password not accepted" 에러 해결법 (0) | 2020.05.26 |
---|---|
(Java) 장비, 시스템 메모리(RAM) 값 알아내는 방법 (feat. OSHI 라이브러리 사용법) (0) | 2020.05.07 |
(Java) 파일명 String 에서 확장자 제거 및 추출 방법 (0) | 2020.05.04 |
(Java) BufferedImage 이미지 파일(PNG, JPEG, TIFF)로 출력하는 방법 (0) | 2020.05.01 |
(Java) Image 파일(로컬, URL) 읽기 (Java File to Image) (0) | 2020.04.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 자전거
- JavaFX
- 인텔리제이
- 스프링부트
- 텐트
- intelij
- effective java
- Java UI
- JavaFX Window Close
- git
- 이펙티브 자바
- 배낭 여행
- 일본 자전거 여행
- JavaFX Table View
- 자전거 여행
- 방통대 과제물
- 일본 여행
- JavaFX 종료
- 배낭여행
- springboot
- windows
- 이펙티브
- TableView
- 이펙티브자바
- JavaFX 테이블뷰
- 자바
- effectivejava
- java
- 일본 배낭여행
- 일본여행
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함