adb

python如何执行adb命令

小亿
82
2024-11-22 14:14:08
栏目: 编程语言

要在Python中执行ADB命令,您可以使用subprocess模块

import subprocess

def execute_adb_command(command):
    process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
    output, error = process.communicate()
    
    if process.returncode != 0:
        print(f"Error occurred while executing ADB command: {error.decode('utf-8')}")
    else:
        print(f"Command output: {output.decode('utf-8')}")

# 示例ADB命令
adb_command = "adb devices"
execute_adb_command(adb_command)

在这个示例中,我们定义了一个名为execute_adb_command的函数,它接受一个命令字符串作为参数。我们使用subprocess.Popen来执行命令,并通过stdoutstderr捕获输出和错误。最后,我们检查进程的返回代码,如果命令执行成功(返回代码为0),我们打印输出;否则,我们打印错误信息。

请注意,这个示例仅用于演示目的。在实际应用中,您可能需要根据具体需求对代码进行调整。

0
看了该问题的人还看了