lyhzzz 3 months ago
parent
commit
6a7210dc66
1 changed files with 2 additions and 2 deletions
  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;
     }