您好,登錄后才能下訂單哦!
首先,adb實現(xiàn)對設(shè)備的reboot命令是:adb reboot . 但是如果是兩臺/多臺設(shè)備的時候,需要聲明serial number: adb -s serial_no reboot.
那么,如何用python實現(xiàn)對多臺設(shè)備進(jìn)行adb操作呢(reboot)?
這里涉及到 python 下 subprocess model的使用:
import subprocess
adb device 獲取所有設(shè)備的 serial number:
devices = subprocess.Popen( 'adb devices'.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE ).communicate()[0]
這樣adb device命令的返回信息都在devices下,但是我們只需要 serial number的:
serial_nos = [] for item in devices.split(): filters = ['list', 'of', 'device', 'devices', 'attached'] if item.lower() not in filters: serial_nos.append(item)
這樣serial_nos 下保存的就是所有設(shè)備的 serial number 了,下面我們只需要依次對其進(jìn)行adb -s [serial_number] reboot即可:
for serial_no in serial_nos: reboot_cmds.append('adb -s %s reboot' % serial_no) for reboot_cmd in reboot_cmds: subprocess.Popen( reboot_cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE ).communicate()[0]
這樣,每個設(shè)備都進(jìn)行了reboot的操作了……
以上這篇Python調(diào)用adb命令實現(xiàn)對多臺設(shè)備同時進(jìn)行reboot的方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。