|
@@ -64,7 +64,7 @@ public class FileZip {
|
|
|
*/
|
|
|
public static String zipFiles(List<File> srcFiles, File zipFile) {
|
|
|
// 判断压缩后的文件存在不,不存在则创建
|
|
|
- if (!zipFile.exists()) {
|
|
|
+ //if (!zipFile.exists()) {
|
|
|
try {
|
|
|
zipFile.createNewFile();
|
|
|
} catch (IOException e) {
|
|
@@ -107,7 +107,7 @@ public class FileZip {
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
- }
|
|
|
+ //}
|
|
|
return zipFile.getAbsolutePath();
|
|
|
}
|
|
|
}
|