JAVA傳遞帶有空格的參數
阿新 • • 發佈:2017-10-13
oid string public system class sys bsp pro space
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"
JAVA傳遞帶有空格的參數