Java 압축 파일 zip

5002 단어 자바jdk
jdk 가 제공 하 는 java. util. zip 패키지 의 클래스 를 사용 하여 파일 을 압축 할 수 있 습 니 다.다음 코드 는 파일 을 압축 하 는 예 입 니 다.//
String[] source = new String[]{"source1", "source2"};

//
byte[] buf = new byte[1024];

try {
// zip
String target = "target.zip";
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(target));

//
for (int i=0; i<source.length; i++) {
FileInputStream in = new FileInputStream(source[i]);

// zip
out.putNextEntry(new ZipEntry(source[i]));

// ZIP
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}

//
out.closeEntry();
in.close();
}

// Complete the ZIP file
out.close();
} catch (IOException e) {
}

좋은 웹페이지 즐겨찾기