1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
public String createZip(String zipFileName,List<String> fileList,String speSymbols){ ZipOutputStream out = null; File zipFile = new File(zipFileName); try { if(!zipFile.exists()){ zipFile.createNewFile(); }else{ zipFile.delete(); zipFile.createNewFile(); } out = new ZipOutputStream(new FileOutputStream(zipFile)); for(String filePath: fileList){ File file = new File(filePath); ZipEntry ent = new ZipEntry(file.getName()); FileInputStream ins = new FileInputStream (file); out.putNextEntry(ent); int b = 0; while((b=ins.read())!=-1){ out.write(b); } ins.close(); } out.close(); } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } return null; } |