python怎么实现adb shell
时间: 2024-01-30 12:04:28 浏览: 94
PyPI 官网下载 | adb_shell-0.3.3-py3-none-any.whl
你可以使用Python的`subprocess`模块来执行adb shell命令。下面是一个简单的示例代码:
```python
import subprocess
def adb_shell(command):
adb_command = f"adb shell {command}"
process = subprocess.Popen(adb_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, error = process.communicate()
if process.returncode != 0:
print(f"执行命令时出错:{error.decode('utf-8')}")
else:
print(f"命令执行结果:{output.decode('utf-8')}")
# 例子:执行 "ls" 命令
adb_shell("ls")
```
这个示例定义了一个名为`adb_shell`的函数,它接受一个命令作为参数,并使用`subprocess.Popen`来执行`adb shell`命令。然后,它从子进程的输出中获取执行结果,并在控制台中打印出来。
你可以将需要执行的adb shell命令作为参数传递给`adb_shell`函数,例如`adb_shell("ls")`将执行`adb shell ls`命令并打印结果。
阅读全文