私は次のようなプログラムを持っています:
import java.io.*;
import java.util.*;
public class ExecBashCommand {
public static void main(String args[]) throws IOException {
if (args.length <= 0) {
System.err.println("Need command to run");
System.exit(-1);
}
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec("./nv0914 < nv0914.challenge");
Process process1 = runtime.exec("echo ${?}");
InputStream is = process1.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
//System.out.printf("Output of running %s is:", Arrays.toString(args));
while ((line = br.readLine()) != null) {
System.out.println(line);
}
}
}
注: nv0914 は bash 実行可能ファイルで、nv0914.challenge はテキスト ファイルです。ターミナルで通常のコマンドを実行し、その直後にecho ${?}
. 今、私はプログラムを使って同じことをしたいのですが、プログラムは単に出力を提供しています${?}
. 私を助けてください!