如何在Android应用程序中与shell(BusyBox)交互
我想从标准 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将执行 ls -la 命令并返回进程。如果您想要更复杂的交互,您应该使用输入和输出流: proc.getInputStream() 和 proc.getOutputStream()
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()
andproc.getOutputStream()