我正在用Java开发一个国际象棋程序。为了计算最佳移动(当一个人与计算机对战时),我使用 UCI(通用国际象棋界面)。那是一个终端应用程序(我使用的是 Mac OS X)。使用 Java,我想执行一些命令以获得最佳动作。这就是我现在所拥有的:
String[] commands = {"/Users/dejoridavid/Desktop/stockfish-6-64", "isready", "uci"};
Process process = null;
try {
process = Runtime.getRuntime().exec(commands);
} catch (IOException e) {
e.printStackTrace();
}
BufferedReader stdInput = new BufferedReader(new InputStreamReader(process.getInputStream()));
// read the output from the command
String s;
try {
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
} catch (IOException e) {
e.printStackTrace();
}
数组中的第一个命令调用终端应用程序。第二个和第三个都是应用内命令。现在我有一个问题。只执行前两个命令,它们的结果在控制台中打印,第三个命令被忽略。我做错什么了吗?请告诉我如何同时执行第三个(或更多、第四个、第五个等)命令。