@@ -500,7 +500,11 @@ public class SceneDownloadHandlerServiceImpl {
zipBytes(out, prefix + key, content.getBytes());
}else{
- zipBytes(out, prefix + key, FileUtils.getBytesFromUrl(url));
+ try {
+ zipBytes(out, prefix + key, FileUtils.getBytesFromUrl(url));
+ }catch (Exception e){
+ log.error("获取字节数据出错,url:{}", url);
+ }
}