有没有一种方法可以根据持续时间过滤StrictMode违规?

这些东西有点烦人

StrictMode policy violation; ~duration=6 ms: android.os.StrictMode$StrictModeDiskWriteViolation: policy=31 violation=1


中毒我的日志猫。

我认为StrictMode是一个有用的功能,但我只想在第一个开发阶段处理持续时间大于50毫秒的违规行为。

最佳答案

StrictMode API不支持按持续时间过滤。

但是您可以通过过滤StrictMode的日志报告轻松地做到这一点:



A.配置StrictMode以写入错误记录:

public void onCreate() {
     if (DEVELOPER_MODE) {
         StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
                 .detectDiskReads()
                 .detectDiskWrites()
                 .detectNetwork()
                 .penaltyLog() //<---------- write reports to log
                 .build());
     }
     super.onCreate();
}




B.阅读logcat行:

logcat = Runtime.getRuntime().exec(new String[]{"logcat", "-d"});
br = new BufferedReader(new InputStreamReader(logcat.getInputStream()),4*1024);
String line;
  final StringBuilder log = new StringBuilder();
  String separator = System.getProperty("line.separator");
    while ((line = br.readLine()) != null) {
          filterLogLine(line)
    }
}




C.按持续时间过滤行:

void filterLogLine(String line) {
    use StringTokenizer to parse the line
    get value of "~duration"
    and filter if lesser than your threshold
}


我让您找出行解析的确切细节。

关于android - 按持续时间过滤Android StrictMode违规,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25056157/

10-08 21:40