lyhzzz 3 月之前
父节点
当前提交
6a7210dc66
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/main/java/com/fdkankan/fusion/common/util/OBJToGLBUtil.java

+ 2 - 2
src/main/java/com/fdkankan/fusion/common/util/OBJToGLBUtil.java

@@ -222,13 +222,13 @@ public class OBJToGLBUtil {
         File file = new File(targetPath);
         FileUtil.copyContent(objPathFile,file,true);
 
-        String cmd = String.format(ShellCmd.osgbTob3dmCmd,targetPath,sourcePath);
+        String cmd = String.format(ShellCmd.osgbTob3dmCmd2,targetPath,sourcePath);
         ShellUtil.execCmd(cmd);
         return sourcePath;
     }
 
     public static String OsgbToB3dm(String  targetPath,String sourcePath) {
-        String cmd = String.format(ShellCmd.osgbTob3dmCmd,targetPath,sourcePath);
+        String cmd = String.format(ShellCmd.osgbTob3dmCmd2,targetPath,sourcePath);
         ShellUtil.execCmd(cmd);
         return sourcePath;
     }