|
@@ -227,7 +227,7 @@ public class DataService {
|
|
|
//导出图片zip包
|
|
|
String sourceFile = "/xinchuangdata/image/" + caseId;
|
|
|
try {
|
|
|
- File dest = new File("/xinchuangdata/imageZip/" + caseId + ".zip");
|
|
|
+ File dest = new File("/xinchuangdata/output/imageZip/" + caseId + ".zip");
|
|
|
if(!dest.getParentFile().exists()) { dest.getParentFile().mkdirs(); }
|
|
|
FileOutputStream fileOutputStream = new FileOutputStream(dest);
|
|
|
toZip(sourceFile, fileOutputStream, false);
|