どのように使用Runtime.getRuntime()。exec()?exec()メソッドを使用してJavaコードでWindowsコンソールアプリケーションを実行するには?
私が試してみてください。
try {
String[] callAndArgs = {"path\\program.exe","arg1","arg2","arg3"}
System.out.println("before");
Process p = Runtime.getRuntime().exec(callAndArgs)
System.out.println("in");
p.waitFor();
System.out.println("after");
} catch (IOException e) {
System.out.println("catch io: " + e.getMessage());
} catch (InterruptedException ie) {
System.out.println("catch ie: " + ie.getMessage());
}
そして、プログラムが動作しません。出力:
before
in
after
hm?ヘルプ; P
これは、リンクのみ答えているとあれば(またはときは使用を持っていないだろうに役立つ可能性を)リンクが死ぬ。 –