Java中可以通過Runtime
類或者ProcessBuilder
類來調用shell命令。
Runtime
類調用shell命令:String command = "ls -l"; // 要執行的shell命令
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec(command); // 執行命令
ProcessBuilder
類調用shell命令:String command = "ls -l"; // 要執行的shell命令
ProcessBuilder builder = new ProcessBuilder(command);
Process process = builder.start(); // 執行命令
以上代碼都是執行了ls -l
命令,并將結果輸出到控制臺。你可以根據自己的需求修改要執行的shell命令。