Android的CPU------自動化獲取APP CPU佔用率

前面已經介紹過如何獲取包名和主活動名。這裏不再過多贅述。我們依舊採取兩種方案實現APP CPU佔有率

Windows下獲取APP CPU佔用率

adb shell "dumpsys cpuinfo | grep com.begoit.studyplan"

 

python腳本實現APP 冷/熱啓動時間

複製代碼

#/usr/bin/python
#encoding:utf-8
import csv
import os
import time

#控制類
class Controller(object):
    def __init__(self, count):
        self.counter = count
        self.alldata = [("timestamp", "cpustatus")]

    #單次測試過程
    def testprocess(self):
        result = os.popen('adb shell "dumpsys cpuinfo | grep com.begoit.studyplan"')
        for line in result.readlines():
            cpuvalue =  line.split("%")[0]

        currenttime = self.getCurrentTime()
        self.alldata.append((currenttime, cpuvalue))

    #多次執行測試過程
    def run(self):
        while self.counter >0:
            self.testprocess()
            self.counter = self.counter - 1
            time.sleep(3)

    #獲取當前的時間戳
    def getCurrentTime(self):
        currentTime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
        return currentTime

    #數據的存儲
    def SaveDataToCSV(self):
        csvfile = file('cpustatus.csv', 'wb')
        writer = csv.writer(csvfile)
        writer.writerows(self.alldata)
        csvfile.close()

if __name__ == "__main__":
    controller = Controller(10)
    controller.run()
    controller.SaveDataToCSV()

複製代碼

 

運行結果展示:

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章