madplay.github.io icon indicating copy to clipboard operation
madplay.github.io copied to clipboard

자바 파일 압축과 압축 해제(ZipInputStream, ZipOutputStream)

Open utterances-bot opened this issue 3 years ago • 1 comments

자바 파일 압축과 압축 해제(ZipInputStream, ZipOutputStream)

java.util.zip 패키지를 이용한 자바 파일 압축과 압축 해제

https://madplay.github.io/post/java-file-zip

utterances-bot avatar Jul 19 '21 07:07 utterances-bot

예제 감사합니다.

저의 경우 "파일 압축 예제"를 테스트 해보니 압축한 zip 파일이 1K로만 나와서, 아래처럼 수정하니 해결되었습니다.

while (((length = fileInputStream.read(buf)) > 0)) {

aaboo avatar Jul 19 '21 07:07 aaboo