@@ -208,6 +208,9 @@ public class ZipCompressUtil {
}
String wPath = path+"/"+downloadFile;
File fileurl = new File(wPath);
+ if (!fileurl.exists()) {
+ return null;
+ }
//将文件读入文件流
InputStream inStream = new FileInputStream(fileurl);