要在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
來執行命令,并通過stdout
和stderr
捕獲輸出和錯誤。最后,我們檢查進程的返回代碼,如果命令執行成功(返回代碼為0),我們打印輸出;否則,我們打印錯誤信息。
請注意,這個示例僅用于演示目的。在實際應用中,您可能需要根據具體需求對代碼進行調整。