透過 Java 執行命令列命令
從 Java 程式執行外部命令對於自動化任務或存取系統功能非常有用。但是,如最初的問題所示,僅使用 Runtime.getRuntime().exec() 可能無法產生所需的行為,特別是在與 Windows 命令提示字元互動時。
要解決此問題,需要使用更進階的方法需要方法。正如引用的帖子中所建議的,一個有效的解決方案包括重複使用一個進程來執行多個命令。以下程式碼舉例說明了此技術:
String[] command = {"cmd"}; Process p = Runtime.getRuntime().exec(command); new Thread(new SyncPipe(p.getErrorStream(), System.err)).start(); new Thread(new SyncPipe(p.getInputStream(), System.out)).start(); PrintWriter stdin = new PrintWriter(p.getOutputStream()); stdin.println("dir c:\ /A /Q"); // Add additional commands here stdin.close(); int returnCode = p.waitFor(); System.out.println("Return code = " + returnCode); class SyncPipe implements Runnable { public SyncPipe(InputStream istrm, OutputStream ostrm) { istrm_ = istrm; ostrm_ = ostrm; } public void run() { try { byte[] buffer = new byte[1024]; int length; while ((length = istrm_.read(buffer)) != -1) { ostrm_.write(buffer, 0, length); } } catch (Exception e) { e.printStackTrace(); } } private final OutputStream ostrm_; private final InputStream istrm_; }
說明:
此方法允許在 Java 應用程式中在 Windows 命令提示字元上以更具互動性的方式執行命令。
以上是如何從 Java 程式中高效率執行多個命令列命令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!