瀏覽代碼

下载于hash

lyhzzz 3 月之前
父節點
當前提交
c91eb674cc
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      src/main/java/com/fdkankan/fusion/controller/DictFileController.java

+ 3 - 2
src/main/java/com/fdkankan/fusion/controller/DictFileController.java

@@ -99,8 +99,9 @@ public class DictFileController extends BaseController{
             return ResultData.ok(commonUpload.getFileUrl());
         }
         if("obj".equals(commonUpload.getFileFormat()) || "osgb".equals(commonUpload.getFileFormat()) || "b3dm".equals(commonUpload.getFileFormat())){
-            sceneObjPath = new File(sceneObjPath).getParentFile().getPath();
-            foName =  new File(sceneObjPath).getParentFile().getName();
+            File parentFile = new File(sceneObjPath).getParentFile();
+            sceneObjPath = parentFile.getPath();
+            foName =  parentFile.getName();
         }
 
         String filePath = String.format(CacheUtil.basePath+"/" +OssPath.MANAGE_FILE_DOWN_PATH ,dictFileId) ;