public String makeZip(String path, String zipFile, ArrayList fileNames){ String fileName = zipFile; FileOutputStream fout = null; ZipOutputStream zout = null; try { fout = new FileOutputStream(path+zipFile); zout = new ZipOutputStream(fout); for(int i=0; i < fileNames.size(); i++){ //본래 파일명 유지, 경로제외 파일압축을 위해 new File로 ZipEntry zipEntry = new ZipEntry(new File(path+fileNames.get(i)).getName()); z..