Python的os包中,可以通过os.system 或 os.popen来实现本地adb命令的调用。
建立下图的文件结构:
app文件夹中放上要执行安装的apk,Python的代码如下:
import os import time flies = os.listdir("app"); for ff in flies: print "adb install -r " + ff text = os.popen("adb install -r app/" + ff) time.sleep(2) print text.read();
是不是步骤简单容易操作,大家可以上手尝试一下。更多python实用知识,点击进入PyThon学习网教学中心