JAVA传递带有空格的参数
Posted 逐梦前行 尽兴而活
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA传递带有空格的参数相关的知识,希望对你有一定的参考价值。
1 String s="b2 + b1"; 2 Process child = Runtime.getRuntime().exec("C:\\eclipse-workspace\\beam\\exe\\bandmath\\BandMath.exe"+" \""+s+"\");
当java传递有空格的代码时s是有空格的参数 需要将" "+s+" "改为
+" \""+s+"\"这样才不会将s里面的空格参数识别为参数之间的空格
1 public class cal { 2 public static void main(String[] args) 3 { 4 String s="B1 + B2"; 5 String s1="B3+B4"; 6 7 System.out.println(s1+" "+s); 8 System.out.println(s1+" \""+s+"\" "); 9 } 10 }
输出:
B3+B4 B1 + B2
B3+B4 "B1 + B2"