1

我正在用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();
}

数组中的第一个命令调用终端应用程序。第二个和第三个都是应用内命令。现在我有一个问题。只执行前两个命令,它们的结果在控制台中打印,第三个命令被忽略。我做错什么了吗?请告诉我如何同时执行第三个(或更多、第四个、第五个等)命令。

4

1 回答 1

1

您不能Runtime.getRuntime().exec()用于在另一个程序中执行命令。传递给 exec 方法的数组将数组的第一个元素作为命令,其他元素作为命令的参数。

来自 public 的 javadocProcess exec(String[] cmdarray) throws IOException

参数: cmdarray - 包含要调用的命令及其参数的数组。

您必须通过调用来执行主命令Runtime.getRuntime().exec()

Process然后您必须使用调用返回的输入流/输出流来编写/读取命令/answersRuntime.getRuntime().exec()

要检索流程的输入流和输出流,请使用流程对象上的getInputStream()getOutputStream()方法

于 2015-08-26T11:59:17.023 回答