从 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中文网其他相关文章!