我在Android设备中运行应用程序时发现了一些崩溃,这在模拟器中没有显示。所以我需要将Logcat保存在设备内存或SD卡的文本文件中。你能建议我这样做的好方法吗?
答案 0 :(得分:62)
在应用的开头使用Application类。这允许适当的文件和日志处理。这是一个例子。这段代码将一个名为“MyPersonalAppFolder”的新文件夹与另一个名为“log”的文件夹添加到公共外部存储中。之后,清除logcat输出并将新的logcat输出写入名为logcatXXX.txt的新文件中,其中XXX是此时的毫秒时间。
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 + "/log" );
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文件中的正确权限:
<uses-permission android:name="android.permission.READ_LOGS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
现在运行您的应用程序并转到&#34; /您的外部存储/ MyPersonalAppFolder / logs /&#34;
您将在那里找到日志文件。
来源:http://www.journal.deviantdev.com/android-log-logcat-to-file-while-runtime/
修改强>
如果您只想保存某些特定活动的日志..
取代:
process = Runtime.getRuntime().exec("logcat -f " + logFile);
使用:
process = Runtime.getRuntime().exec( "logcat -f " + logFile + " *:S MyActivity:D MyActivity2:D");
答案 1 :(得分:12)
adb shell logcat -t 500 > D:\logcat_output.txt
转到终端/命令提示符并导航到包含adb的文件夹(如果尚未添加到环境变量中)并粘贴此命令。
t是您需要查看的数字行
D:\ logcat_output.txt是您的logcat将被存储的位置。
答案 2 :(得分:10)
在班级中使用-f选项和logcat:
Runtime.getRuntime().exec("logcat -f" + " /sdcard/Logcat.txt");
这会将日志转储到文件存储设备。
请注意,路径“/ sdcard /”可能并非在所有设备中都可用。您应该使用standard APIs to access the external storage。
答案 3 :(得分:6)
由于我无法发表评论,我会将此作为回答发布
我做了@HeisenBerg说,对我来说很好,但是从Android 6.0开始我们必须在运行时ask for permission,我必须添加以下内容:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if(checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{android.Manifest.permission.WRITE_EXTERNAL_STORAGE}, 1);
}
}
并致电
process = Runtime.getRuntime().exec("logcat -f " + logFile);
仅在回调onRequestPermissionsResult
答案 4 :(得分:2)
添加清单权限:
uses-permission android:name="android.permission.READ_LOGS"
private static final String COMMAND = "logcat -d -v time";
public static void fetch(OutputStream out, boolean close) throws IOException {
byte[] log = new byte[1024 * 2];
InputStream in = null;
try {
Process proc = Runtime.getRuntime().exec(COMMAND);
in = proc.getInputStream();
int read = in.read(log);
while (-1 != read) {
out.write(log, 0, read);
read = in.read(log);
}
}
finally {
if (null != in) {
try {
in.close();
}
catch (IOException e) {
// ignore
}
}
if (null != out) {
try {
out.flush();
if (close)
out.close();
}
catch (IOException e) {
// ignore
}
}
}
}
public static void fetch(File file) throws IOException {
FileOutputStream fos = new FileOutputStream(file);
fetch(fos, true);
}
答案 5 :(得分:1)
如果您只需要保存logcat(无需编码),则可以使用Google Play中的aLogrec
或aLogcat
个应用程序。
Google Play商店:aLogcat & aLogrec
答案 6 :(得分:0)
显然, android.permission.READ_LOGS 仅授予最新版本Android中的系统应用。
答案 7 :(得分:0)
我将 Drunken Daddy's answer 调整为不需要权限并将其迁移到 Kotlin。
在应用的开头使用 Application 类。这允许正确的文件和日志处理。
下面的代码在以下位置创建一个日志文件:
/Android/data/com.your.app/files/logs/logcat_XXX.txt
XXX 是以毫秒为单位的当前时间。每次运行应用时,都会创建一个新的 logcat_XXX.txt 文件。
import android.app.Application
import java.io.File
import java.io.IOException
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
getExternalFilesDir(null)?.let { publicAppDirectory -> // getExternalFilesDir don't need storage permission
val logDirectory = File("${publicAppDirectory.absolutePath}/logs")
if (!logDirectory.exists()) {
logDirectory.mkdir()
}
val logFile = File(logDirectory, "logcat_" + System.currentTimeMillis() + ".txt")
// clear the previous logcat and then write the new one to the file
try {
Runtime.getRuntime().exec("logcat -c")
Runtime.getRuntime().exec("logcat -f $logFile")
} catch (e: IOException) {
e.printStackTrace()
}
}
}
}
在 AndroidManifest.xml 中设置应用程序:
<application
android:name=".MyApplication"
... >
答案 8 :(得分:0)
Drunken Daddy 的回答是完美的。不过我想补充一下,
var widgets = <Widget>[
for (var i = 0; i < 3; i += 1) Text('$i'),
];
在 API 级别 29 中已弃用,Android Studio 不会向您发出任何警告。相反,您需要use
Environment.getExternalStorageDirectory()
哪个返回
context.getExternalFilesDir(null);