Java Runtime.getRuntime().exec 执行带空格命令解决办法

String command = OpenOffice_HOME  
                  + "program\\soffice -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\" -nofirststartwizard "; 
         
          command = "cmd /c start "+command.replaceAll(" ","\" \"");
          Process pro = Runtime.getRuntime().exec(command);



Java Runtime.getRuntime().exec 执行带空格命令解决办法,布布扣,bubuko.com

Java Runtime.getRuntime().exec 执行带空格命令解决办法

上一篇:java正则表达式匹配所有数字


下一篇:SpringMVC与Freemarker集成,配置项目全局的绝对路径