|
@@ -95,9 +95,6 @@ public class SceneDownloadHandlerServiceImpl {
|
|
|
@Value("${path.v4school}")
|
|
|
private String v4localPath;
|
|
|
|
|
|
- @Value("${path.oss-local}")
|
|
|
- private String ossLocalFormat;
|
|
|
-
|
|
|
@Value("${path.zip-local}")
|
|
|
private String zipLocalFormat;
|
|
|
|
|
@@ -523,7 +520,7 @@ public class SceneDownloadHandlerServiceImpl {
|
|
|
|
|
|
}
|
|
|
|
|
|
- public synchronized void zipInputStream(ZipOutputStream out, String key, InputStream in) throws Exception {
|
|
|
+ public void zipInputStream(ZipOutputStream out, String key, InputStream in) throws Exception {
|
|
|
out.putNextEntry(new org.apache.tools.zip.ZipEntry(key));
|
|
|
byte[] bytes = new byte[1024];
|
|
|
int b = 0;
|