일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- linux
- 요리
- elasticsearch
- it
- ubuntu
- Spring Boot
- MySQL
- 맛집
- Oracle
- JVM
- java
- laravel
- devops
- tool
- Gradle
- javascript
- IntelliJ
- jenkins
- Spring
- Design Patterns
- Git
- Web Server
- jsp
- ReactJS
- AWS
- redis
- php
- Spring Batch
- springboot
- db
Archives
- Today
- Total
아무거나
파일복사 본문
반응형
public static void main(String[] args) {
fileCopy("./file/copy/example1.txt", "./file/copy/example2.txt");
}
public static void fileCopy(String origPath, String newPath) {
try {
// 원본 파일을 읽는다
FileInputStream fileInputStream = new FileInputStream(origPath);
// 원하는 경로로 파일을 복사한다
FileOutputStream fileOutputStream = new FileOutputStream(newPath);
int data = 0;
while ((data = fileInputStream.read()) != -1) {
fileOutputStream.write(data);
}
fileInputStream.close();
fileOutputStream.close();
// 복사가 완료되면 원본파일 삭제할 경우에 해당 주석 해제
// File delOrigFile = new File(origPath);
// delOrigFile.delete();
} catch (Exception e) {
if (log.isErrorEnabled()) {
log.error("fileCopy ERROR {}", e.getMessage());
}
}
}
반응형
'Java & Kotlin > Java' 카테고리의 다른 글
리플렉션(Reflection) 이란? (0) | 2021.05.03 |
---|---|
Java에서 Apache OpenOffice + JODConverter 를 활용한 PDF Converter 개발 (2) | 2020.06.17 |
[Swagger] java.lang.NumberFormatException: For input string 오류 표시 해결 (1) | 2020.05.30 |
Stream 정렬 관련 Example (0) | 2020.05.28 |
조합(=combination) 구하기 (0) | 2020.05.16 |
Comments