xcode 项目编译成为一个命令行工具,命令行使用通过;但是在 java 代码中调用一直失败,路径也加了环境中,还是一直失败,为什么呢,求指教下~
Process p = Runtime.getRuntime().exec(tu);
br = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = null;
while ((line = br.readLine()) != null) {
cmdOut += line.trim() + "\n";
}
p.waitFor();
System.out.println(cmdOut);