Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자동배포
- visual studio code
- ci/cd
- Python
- ANTIFRAGILE
- bigquery
- vscode
- JPQL
- 르세라핌
- codeium
- java
- docker
- pat발급
- analytics4
- MariaDB
- github
- db종류
- 티스토리챌린지
- git branch 삭제
- Jenkins
- 오블완
- jetbrain
- 애널리틱스4
- gtihub
- spring
- JPA
- IntelliJ
- git pat
- 명령어
Archives
- Today
- Total
hanker
JAVA - 파일 압축 본문
반응형
public static void zipDirectory(String dir, String zipfile) throws IOException, IllegalArgumentException{
//파일리스트 가져오기 위해 객체 생성
File d = new File(dir);
//디렉토리 존재유무
if(!d.isDirectory())
throw new IllegalArgumentException("Not a directory : " + dir);
//해당 경로의 파일을 배열로 가져옴
String[] entries = d.list();
//파일 복사를 위한 버퍼
byte[] buffer = new byte[4096];
int bytesRead;
//zip파일을 생성하기 위한 객체 생성
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipfile));
//해당경로의 파일들을 루프
for(int i = 0 ; i < entries.length ; i++) {
File f = new File(d, entries[i]);
if(f.isDirectory())
continue;
//스트림으로 파일을 읽음
FileInputStream in = new FileInputStream(f);
//zip파일을 만들기 위하여 out객체에 write하여 zip파일 생성
ZipEntry entry = new ZipEntry(f.getPath()); //make a ZipEntry
System.out.println("압축 대상 파일 : " + entry);
out.putNextEntry(entry);
while((bytesRead = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
}
in.close();
}
out.close();
}
public static void main(String ar[]) throws Exception{
String zipFilePath = "파일경로";
String zipFileName = "파일경로 + 파일명";
TestZip.zipDirectory(zipFilePath, zipFileName + ".zip");
}
반응형
'JAVA' 카테고리의 다른 글
JAVA - String to Date (String → Date) 바꾸기 (0) | 2021.03.22 |
---|---|
JAVA - XML to JSON (xml → json) 바꾸기 (0) | 2021.01.12 |
JAVA - local에서 서버 시스템 Command사용 (0) | 2020.08.14 |
JAVA - Hbase 데이터 삭제 example (0) | 2020.08.10 |
JAVA - hbase 데이터 명 변경 example (0) | 2020.08.10 |