從 Android 應用程式執行 Shell 命令
嘗試從 Android 應用程式內執行 shell 命令時,必須考慮以下限制:作業系統。要獲得提升的權限,建議使用“su”實用程序,它提供了一種更安全的機制來授予臨時 root 存取權限。
在標準 Android 終端機中,透過鍵入「su」來執行指令「su」後接所需的指令,例如「screenrecord --time-limit 10 /sdcard/MyVideo.mp4」。但是,當嘗試在 Java 應用程式中執行相同的操作時,可能會遇到困難。
嘗試同時執行「su」和指令時存在一個潛在問題。要正確提升權限,需要先啟動「su」進程,然後透過標準輸入流提供命令作為輸入。
為了實現此目的,程式碼的修改版本如下:
try { Process su = Runtime.getRuntime().exec("su"); DataOutputStream outputStream = new DataOutputStream(su.getOutputStream()); // Provide the command through the standard input stream outputStream.writeBytes("screenrecord --time-limit 10 /sdcard/MyVideo.mp4\n"); outputStream.flush(); // Terminate the "su" process outputStream.writeBytes("exit\n"); outputStream.flush(); su.waitFor(); } catch (IOException | InterruptedException e) { throw new Exception(e); }
透過以這種方式修改程式碼,可以使用「su」實用程式從Android 應用程式成功執行shell 命令,從而獲得螢幕等任務所需的提升權限錄音。
以上是如何在 Android 應用程式中以提升的權限執行 Shell 命令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!