在Java 中使用Sudo 權限執行Bash 指令
使用bash 指令時,您可能會遇到需要執行某些指令的情況,如下所示超級用戶。 Java 的 ProcessBuilder 類別提供了執行 bash 命令的便利方法,但預設情況下它不允許傳遞超級使用者權限。
要使用ProcessBuilder 執行具有sudo 權限的命令,可以採用以下方法(請注意安全隱患):
<br>import java.io.*;<p>public class Main {</p><pre class="brush:php;toolbar:false">public static void main(String[] args) throws IOException { // Prepare the command with "sudo" and the desired command String[] cmd = {"/bin/bash", "-c", "echo password| sudo -S ls"}; // Execute the command using Runtime.getRuntime().exec() Process pb = Runtime.getRuntime().exec(cmd); // Process the output and print the result BufferedReader input = new BufferedReader(new InputStreamReader(pb.getInputStream())); String line; while ((line = input.readLine()) != null) { System.out.println(line); } input.close(); }
}
pre>
在此方法中,「sudo」指令與「-S」選項一起使用,允許透過標準輸入提供密碼。然後將密碼透過管道傳輸到「ls」命令,該命令將以提升的權限執行。
注意:此方法涉及透過命令列輸入密碼,這會帶來潛在的安全風險。應謹慎使用,並且僅在必要時使用。在不同的情況下,替代方法可能更合適,例如使用專用的命令列工具或支援 sudo 的 Java 庫。
以上是如何在 Java 中使用 Sudo 權限執行 Bash 指令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!