ZipOutputStream 썸네일형 리스트형 [Java] 여러 파일을 묶은 하나의 압축파일(Zip) 만들기 배경- 여러 File들을 읽어서 하나의 압축 파일로 만들 수 없을까? 참고- http://www.baeldung.com/java-compress-and-uncompress Junit Test 환경에서 로컬에 파일쓰기 @Test public void testWriteLocalZipFile() throws Exception { String path = "D:\\temp\\yst"; FileOutputStream zipFileOutputStream = new FileOutputStream(path + "/files.zip"); ZipOutputStream zipOutputStream = new ZipOutputStream(zipFileOutputStream); ZipEntry zipEntry = new Zip.. 이전 1 다음