如何在Android应用程序中与shell(BusyBox)交互

发布于 2024-10-11 07:50:27 字数 114 浏览 2 评论 0原文

我想从标准 Android 应用程序向 Android shell (BusyBox) 发送命令(并接收输出)。我该怎么做呢?谷歌搜索1小时没有结果。

非常感谢帮助。

问候, 斯万特

I want to send commands to (and receive output from) the Android shell (BusyBox) from a standard Android App. How would I go about doing this? 1 hour of googling yielded no result.

Help very appreciated.

Regards,
Svante

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2024-10-18 07:50:27
Process proc = Runtime.getRuntime().exec("ls -la");

这将执行 ls -la 命令并返回进程。如果您想要更复杂的交互,您应该使用输入和输出流: proc.getInputStream() 和 proc.getOutputStream()

Process proc = Runtime.getRuntime().exec("ls -la");

This will execute ls -la command and return you the process. If you want more complicated interaction you should use input and output stream: proc.getInputStream() and proc.getOutputStream()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文