我是靠谱客的博主 要减肥学姐,最近开发中收集的这篇文章主要介绍android保存特定log文件,将Logcat保存到Android设备中的文本文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

小编典典

在应用程序的开头使用Application类。这样可以进行正确的文件和日志处理。

下面的代码在以下位置创建一个日志文件:

/ExternalStorage/MyPersonalAppFolder/logs/logcat_XXX.txt

XXX是当前时间(以毫秒为单位)。每次您运行应用程序时,都会创建一个新的logcat_XXX.txt文件。

public class MyPersonalApp extends Application {

/**

* Called when the application is starting, before any activity, service, or receiver objects (excluding content providers) have been created.

*/

public void onCreate() {

super.onCreate();

if ( isExternalStorageWritable() ) {

File appDirectory = new File( Environment.getExternalStorageDirectory() + "/MyPersonalAppFolder" );

File logDirectory = new File( appDirectory + "/logs" );

File logFile = new File( logDirectory, "logcat_" + System.currentTimeMillis() + ".txt" );

// create app folder

if ( !appDirectory.exists() ) {

appDirectory.mkdir();

}

// create log folder

if ( !logDirectory.exists() ) {

logDirectory.mkdir();

}

// clear the previous logcat and then write the new one to the file

try {

Process process = Runtime.getRuntime().exec("logcat -c");

process = Runtime.getRuntime().exec("logcat -f " + logFile);

} catch ( IOException e ) {

e.printStackTrace();

}

} else if ( isExternalStorageReadable() ) {

// only readable

} else {

// not accessible

}

}

/* Checks if external storage is available for read and write */

public boolean isExternalStorageWritable() {

String state = Environment.getExternalStorageState();

if ( Environment.MEDIA_MOUNTED.equals( state ) ) {

return true;

}

return false;

}

/* Checks if external storage is available to at least read */

public boolean isExternalStorageReadable() {

String state = Environment.getExternalStorageState();

if ( Environment.MEDIA_MOUNTED.equals( state ) ||

Environment.MEDIA_MOUNTED_READ_ONLY.equals( state ) ) {

return true;

}

return false;

}

}

您需要在.manifest文件中使用正确的权限和应用程序类的名称:

android:name=".MyPersonalApp"

... >

编辑:

如果您只想保存某些特定活动的日志。

更换:

process = Runtime.getRuntime().exec("logcat -f " + logFile);

与:

process = Runtime.getRuntime().exec( "logcat -f " + logFile + " *:S MyActivity:D MyActivity2:D");

2020-09-18

最后

以上就是要减肥学姐为你收集整理的android保存特定log文件,将Logcat保存到Android设备中的文本文件的全部内容,希望文章能够帮你解决android保存特定log文件,将Logcat保存到Android设备中的文本文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部