Zip 썸네일형 리스트형 [Hadoop] 여러 파일들을 하나의 압축파일로 만들기 단순 Java로 로컬 디스크에 Zip파일 만드는 버전- http://seongtak-yoon.tistory.com/74 목적- 여러 디렉토리에 있는 spark로 partition된 파일들을 hadoop 파일 시스템을 통해 읽은 후 하나의 zip파일로 만들기 @Test public void testRead다른디렉토리HdfsFilesToOneZipFile() throws Exception { String hdfs = PropertyUtils.getValue("hdfs.url"); // hdfs://sample:port // 읽을 디렉토리 및 zip에 저장할 파일명 정보 Map fooSaveInfoMap = new HashMap(); fooSaveInfoMap.put("path", "/sample/foo");.. [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 다음