|
|
@@ -371,6 +371,8 @@ public class FusionDownService {
|
|
|
}
|
|
|
@Value("${upload.query-path}")
|
|
|
private String queryPath;
|
|
|
+ @Value("${upload.query-path-ss}")
|
|
|
+ private String ssQueryPath;
|
|
|
public void downZip(Integer type ,String uri,String kkzipPath,String kknumPath,String sszipPath,String ssNumPath){
|
|
|
try {
|
|
|
if(type != 2 && type != 5){ //深时点云
|
|
|
@@ -382,7 +384,7 @@ public class FusionDownService {
|
|
|
ShellUtil.unZip(kkzipPath,kknumPath);
|
|
|
FileUtil.del(kkzipPath);
|
|
|
}else {
|
|
|
- ShellUtil.yunDownloadSs(uri.replace(queryPath, ""), sszipPath);
|
|
|
+ ShellUtil.yunDownloadSs(uri.replace(ssQueryPath, ""), sszipPath);
|
|
|
ShellUtil.unZip(sszipPath,ssNumPath);
|
|
|
FileUtil.del(sszipPath);
|
|
|
}
|