Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android 手机中的默认内置 shell 是什么,我可以在不安装 shell的情况下运行runtime.exec Java 方法吗?
您可以在 Android 中调用 runtime.exec(String) ,但它不会让您走得太远,因为运行时并没有真正提供要使用的命令。但是,如果您有一个安装了busybox 和su 的root 手机,则可以调用这些嵌入式命令。甚至可以通过执行 su 二进制文件并使用它的流来创建超级用户会话。