0
在IllegalThreadStateException運行時錯誤此代碼將在符合if語句:爲什麼我在ProcessBuilder中得到一個IllegalThreadStateException錯誤--Java?
public static void main(String args[]) throws IOException, InterruptedException {
Runtime runtime = Runtime.getRuntime();
Process proc = new ProcessBuilder("\"c:\\[directory]/doer.exe\"").start();
if(proc.exitValue() == 1)
System.out.println("Output: 1");
}
這是應該明確運行可執行文件有退出代碼1.我在做什麼錯了,我該如何解決?
你想要''「c:\\ [目錄] \\ doer.exe \」「'? –