在Java 中建立外部流程
在Java 中,啟動外部進程並與外部進程互動的能力在某些場景下至關重要。與 .Net 的 System.Diagnostics.Process.Start("processname") 類似,Java 提供了一種優雅的方法來實現此目的。
解決方案位於 Java 的 Runtime 套件中提供的 Process 類別中。下面的程式碼片段示範如何建立和執行外部進程:
import java.io.BufferedReader; import java.io.InputStreamReader; import java.nio.file.Paths; import java.util.Properties; public class ExternalProcess { public static void main(String[] args) { try { // Get temp user directory path using properties String tempPath = System.getProperty("java.io.tmpdir"); // Construct the file path to the executable String filePath = Paths.get(tempPath, "myProcess.exe").toString(); // Start the external process using Runtime.exec() Process process = Runtime.getRuntime().exec(filePath); // Wait for the process to complete process.waitFor(); // Check exit value to determine if the process completed successfully if (process.exitValue() == 0) { System.out.println("Process executed successfully."); } else { System.out.println("Process failed to execute."); } } catch (Exception e) { System.out.println("Error occurred while executing the process."); e.printStackTrace(); } } }
此程式碼片段提供了啟動進程的通用方法,無論底層作業系統為何。您可以在 filePath 中指定可執行檔案的路徑,並執行目標電腦上可用的任何進程。
執行時,程式碼片段會在作業系統中建立一個新進程,啟動執行檔並等待它完成運行。進程完成後,它會檢查退出值以確定是否執行成功。
以上是如何在Java中執行外部程序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!