Android获取存储和打印输出Logcat日志
生活随笔
收集整理的這篇文章主要介紹了
Android获取存储和打印输出Logcat日志
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
一、首先要把權(quán)限添加到AndroidManifest中
<!-- 讀取Log權(quán)限 --> <uses-permission android:name="android.permission.READ_LOGS" /> <!-- 在SDCard中創(chuàng)建與刪除文件權(quán)限 --> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> <!-- 往SDCard寫入數(shù)據(jù)權(quán)限 --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- 從SDCard讀出數(shù)據(jù)權(quán)限 --> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />二、然后獲取Logcat中的日志
1.首先我們要先定義一個String[]數(shù)組,里面的代碼是 //第一個是Logcat ,也就是我們想要獲取的log日志 //第二個是 -s 也就是表示過濾的意思 //第三個就是adb命令 我們要過濾的類型 E表示error ,我們也可以換成 D :debug, I:info,W:warm等等 詳情看 String[] running = new String[]{"logcat","-s","adb logcat *: W"}; 2.還需要一個process類,作用通俗來講就是用Java代碼來進(jìn)行adb命令行操作代碼是: Process exec = Runtime.getRuntime().exec(running);三、接下來開始使用IO流進(jìn)行字符操作,把數(shù)據(jù)保存在Android SDCard中指定位置
開啟一個線程,線程中的方法就是通過IO流先讀取Logcat中的數(shù)據(jù),然后再把數(shù)據(jù)通過OutPutStream方法寫入到SDCard中
//存儲日志文件路徑private static String filePath = "/storage/emulated/0/log/Log.txt";//adb命令 日志過濾條件String[] running = new String[]{"logcat", "-s", "adb logcat FaceSDK:E *:S"};try {Process exec = Runtime.getRuntime().exec(running);final InputStream is = exec.getInputStream();new Thread() {@Overridepublic void run() {FileOutputStream os = null;try {//新建一個路徑信息os = new FileOutputStream(filePath);int len = 0;byte[] buf = new byte[1024];while (-1 != (len = is.read(buf))) {os.write(buf, 0, len);os.flush();}} catch (Exception e) {Log.d("writelog","read logcat process failed. message: "+ e.getMessage());} finally {if (null != os) {try {os.close();os = null;} catch (IOException e) {// Do nothing}}}}}.start();} catch (IOException e) {e.printStackTrace();}然后運(yùn)行程序再打開我們的SDCard中的文件目錄,這樣我們就已經(jīng)獲取到了Logcat中的日志了
四、之后我們按行讀取Txt文本中的內(nèi)容
/** * 根據(jù)行讀取內(nèi)容 * @return */ public List<String> Txt() { //將讀出來的一行行數(shù)據(jù)使用List存儲 String filePath = "/storage/emulated/0/log/Log.txt"; List newList=new ArrayList<String>(); try { File file = new File(filePath); int count = 0;//初始化 key值 if (file.isFile() && file.exists()) {//文件存在 InputStreamReader isr = new InputStreamReader(new FileInputStream(file)); BufferedReader br = new BufferedReader(isr); String lineTxt = null; while ((lineTxt = br.readLine()) != null) { if (!"".equals(lineTxt)) { String reds = lineTxt.split("\\+")[0]; //java 正則表達(dá)式 newList.add(count, reds); count++; } } isr.close(); br.close(); }else { Log.e("tag", "can not find file");} } catch (Exception e) { e.printStackTrace(); } return newList; }五、最后清空日志
/*** 刪除Log文件* @param filePath 文件路徑和名稱*/public static void delFile(String filePath){ File file = new File(filePath); if(file.isFile()){ file.delete(); } file.exists(); }總結(jié)
以上是生活随笔為你收集整理的Android获取存储和打印输出Logcat日志的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java中 break、continue
- 下一篇: System.currentTimeMi