我有一个不在市场上的应用程序(使用调试证书签名),但只要我的应用程序崩溃,我想获取崩溃日志数据。我在哪里可以找到我的应用程序崩溃原因的日志?
答案 0 :(得分:133)
如果您的应用被其他人下载并在远程设备上崩溃,您可能需要查看Android错误报告库(在this SO post中引用)。如果它只在您自己的本地设备上,您可以使用LogCat.
即使设备在发生崩溃时未连接到主机,连接设备并发出adb logcat
命令也会下载整个logcat历史记录(至少在缓冲的程度上,它通常是日志数据的一个,它只是不是无限的)。这些选项中的任何一个都可以回答您的问如果没有,你可以尝试澄清你想要的更多吗?
答案 1 :(得分:42)
执行此操作的方法是实施Thread.UncaughtExceptionHandler
界面,并在活动Thread.setDefaultUncaughtExceptionHandler()
的开头将其传递给onCreate()
。这是实现类TopExceptionHandler
。
public class TopExceptionHandler implements Thread.UncaughtExceptionHandler {
private Thread.UncaughtExceptionHandler defaultUEH;
private Activity app = null;
public TopExceptionHandler(Activity app) {
this.defaultUEH = Thread.getDefaultUncaughtExceptionHandler();
this.app = app;
}
public void uncaughtException(Thread t, Throwable e) {
StackTraceElement[] arr = e.getStackTrace();
String report = e.toString()+"\n\n";
report += "--------- Stack trace ---------\n\n";
for (int i=0; i<arr.length; i++) {
report += " "+arr[i].toString()+"\n";
}
report += "-------------------------------\n\n";
// If the exception was thrown in a background thread inside
// AsyncTask, then the actual exception can be found with getCause
report += "--------- Cause ---------\n\n";
Throwable cause = e.getCause();
if(cause != null) {
report += cause.toString() + "\n\n";
arr = cause.getStackTrace();
for (int i=0; i<arr.length; i++) {
report += " "+arr[i].toString()+"\n";
}
}
report += "-------------------------------\n\n";
try {
FileOutputStream trace = app.openFileOutput("stack.trace",
Context.MODE_PRIVATE);
trace.write(report.getBytes());
trace.close();
} catch(IOException ioe) {
// ...
}
defaultUEH.uncaughtException(t, e);
}
}
注意我们让Android框架的defaultUEH来处理它。
在Activity的顶部注册一个上面类的实例,如下所示:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Thread.setDefaultUncaughtExceptionHandler(new TopExceptionHandler(this));
...
此处理程序将跟踪保存在文件中。当ReaderScope
下次重新启动时,它会检测到该文件并提示用户是否要将其通过电子邮件发送给开发人员。
要通过电子邮件发送堆栈跟踪,请执行以下代码将其打包到电子邮件中。
try {
BufferedReader reader = new BufferedReader(
new InputStreamReader(ReaderScopeActivity.this.openFileInput("stack.trace")));
while((line = reader.readLine()) != null) {
trace += line+"\n";
}
} catch(FileNotFoundException fnfe) {
// ...
} catch(IOException ioe) {
// ...
}
Intent sendIntent = new Intent(Intent.ACTION_SEND);
String subject = "Error report";
String body = "Mail this to appdeveloper@gmail.com: " + "\n" + trace + "\n";
sendIntent.putExtra(Intent.EXTRA_EMAIL, new String[] {"readerscope@altcanvas.com"});
sendIntent.putExtra(Intent.EXTRA_TEXT, body);
sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
sendIntent.setType("message/rfc822");
ReaderScopeActivity.this.startActivity(Intent.createChooser(sendIntent, "Title:"));
ReaderScopeActivity.this.deleteFile("stack.trace");
或者您也可以使用ACRA错误报告系统。只需在项目库中包含ACRA.jar,并在启动器活动类声明之前使用以下代码片段
@ReportsCrashes(formKey = "", mailTo = "abc@gmail.com;def@yahoo.com", mode = ReportingInteractionMode.SILENT)
答案 2 :(得分:31)
这是http://www.herongyang.com/Android/Debug-adb-logcat-Command-Debugging.html
您可以使用adb:
adb logcat AndroidRuntime:E *:S
答案 3 :(得分:25)
您可以从控制台尝试: -
adb logcat -b crash
答案 4 :(得分:10)
您可以使用Apphance。这是一个跨平台的服务(现在主要是Android,iOS,其他平台正在运行),允许远程调试任何移动设备(Android,iOS现在 - 其他正在开发中)。它不仅仅是一个崩溃日志,实际上还有更多:记录,测试人员报告问题,崩溃日志。整合大约需要5分钟。目前,您可以申请访问封闭测试版。
免责声明:我是Polidea的首席技术官,该公司是Apphance的合作伙伴及其共同创建者。
更新:Apphance不再是测试版! 更新2:Apphance作为http://applause.com提供
的一部分提供答案 5 :(得分:8)
这是Crash Log的另一种解决方案。
Android市场有一个名为“Crash Collector”的工具
查看以下链接以获取更多信息
http://kpbird.blogspot.com/2011/08/android-application-crash-logs.html
答案 6 :(得分:7)
如果您正在使用Eclipse,请确保使用debug而不是运行。 确保您处于调试透视图中(右上角) 您可能需要多次点击“恢复”(F8)才能打印日志。 崩溃日志将位于底部的Logcat窗口中 - 双击全屏,并确保滚动到底部。您将看到错误的红色文本,崩溃跟踪将类似于
09-04 21:35:15.228: ERROR/AndroidRuntime(778): Uncaught handler: thread main exiting due to uncaught exception
09-04 21:35:15.397: ERROR/AndroidRuntime(778): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dazlious.android.helloworld/com.dazlious.android.helloworld.main}: java.lang.ArrayIndexOutOfBoundsException
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.ActivityThread.access$1800(ActivityThread.java:112)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.os.Handler.dispatchMessage(Handler.java:99)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.os.Looper.loop(Looper.java:123)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.ActivityThread.main(ActivityThread.java:3948)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at java.lang.reflect.Method.invokeNative(Native Method)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at java.lang.reflect.Method.invoke(Method.java:521)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at dalvik.system.NativeStart.main(Native Method)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): Caused by: java.lang.ArrayIndexOutOfBoundsException
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at com.example.android.helloworld.main.onCreate(main.java:13)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)
09-04 21:35:15.397: ERROR/AndroidRuntime(778): ... 11 more
这个的重要部分是
09-04 21:35:15.397: ERROR/AndroidRuntime(778): Caused by: java.lang.ArrayIndexOutOfBoundsException
09-04 21:35:15.397: ERROR/AndroidRuntime(778): at com.example.android.helloworld.main.onCreate(main.java:13)
那些告诉我们在onCrate方法的main.java第13行是一个数组超出范围的例外。
答案 7 :(得分:4)
如果您正在寻找基本的崩溃报告工具,请尝试crashlytics。
如果您想要更高级的报告工具,请结帐Gryphonet。它会记录所有发生的崩溃以及导致崩溃的确切代码行以及自动标记,以显示用户在崩溃之前采取的步骤等等。
祝你好运!答案 8 :(得分:4)
您可以使用this中的ACRA。将此库包含到您的项目中并对其进行配置,您可以收到(在您的电子邮件或gdocs中)他们的崩溃报告。抱歉我的英语不好。
答案 9 :(得分:3)
使用acra crash reporter for android app .. Acra lib
答案 10 :(得分:2)
这是可以帮助您将所有日志转储到文本文件中的解决方案
adb logcat -d > logs.txt
答案 11 :(得分:1)
您还可以使用库crashcatcher
答案 12 :(得分:0)
如果您只是在手机连接到计算机时查找崩溃日志,请使用Eclipse中的DDMS视图,当您的应用程序在调试时崩溃时,报告就会出现在DDMS中的LogCat中。
答案 13 :(得分:0)
我创建了这个库来解决你所有的问题。 Crash Reporter is a handy tool to capture all your crashes and log them in device locally
只需添加此依赖项即可开始使用。
compile 'com.balsikandar.android:crashreporter:1.0.1'
在本地查找设备中的所有崩溃并在方便时修复它们。 使用易于跟踪的日期和时间格式保存崩溃。此外,它还提供了使用以下方法捕获Logged Exceptions的API。
CrashRepoter.logException(Exception e)
答案 14 :(得分:0)
1)通过USB插入电话(启用了开发人员调试选项)
2)打开终端并导航到您的Android SDK(对于Mac):
cd ~/Library/Android/sdk/platform-tools
3)从该目录(在您的终端)中的Logcat生成恒定的日志流(对于Mac):
./adb logcat
4)打开崩溃的应用程序以生成崩溃日志
5)Ctrl + C停止终端并查找与崩溃的应用程序关联的日志。它可能会说类似以下内容:
AndroidRuntime: FATAL EXCEPTION: main
答案 15 :(得分:0)
基于此POST ,使用此类代替“ TopExceptionHandler”
class TopExceptionHandler implements Thread.UncaughtExceptionHandler {
private Thread.UncaughtExceptionHandler defaultUEH;
private Activity app = null;
private String line;
public TopExceptionHandler(Activity app) {
this.defaultUEH = Thread.getDefaultUncaughtExceptionHandler();
this.app = app;
}
public void uncaughtException(Thread t, Throwable e) {
StackTraceElement[] arr = e.getStackTrace();
String report = e.toString()+"\n\n";
report += "--------- Stack trace ---------\n\n";
for (int i=0; i<arr.length; i++) {
report += " "+arr[i].toString()+"\n";
}
report += "-------------------------------\n\n";
// If the exception was thrown in a background thread inside
// AsyncTask, then the actual exception can be found with getCause
report += "--------- Cause ---------\n\n";
Throwable cause = e.getCause();
if(cause != null) {
report += cause.toString() + "\n\n";
arr = cause.getStackTrace();
for (int i=0; i<arr.length; i++) {
report += " "+arr[i].toString()+"\n";
}
}
report += "-------------------------------\n\n";
try {
FileOutputStream trace = app.openFileOutput("stack.trace",
Context.MODE_PRIVATE);
trace.write(report.getBytes());
trace.close();
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"kevineyni@gmail.com"});
i.putExtra(Intent.EXTRA_SUBJECT, "crash report azar");
String body = "Mail this to kevineyni@gmail.com: " + "\n" + trace + "\n";
i.putExtra(Intent.EXTRA_TEXT , body);
try {
startActivity(Intent.createChooser(i, "Send mail..."));
} catch (android.content.ActivityNotFoundException ex) {
// Toast.makeText(MyActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
}
// ReaderScopeActivity.this.startActivity(Intent.createChooser(sendIntent, "Title:"));
//ReaderScopeActivity.this.deleteFile("stack.trace");
} catch(IOException ioe) {
// ...
}
defaultUEH.uncaughtException(t, e);
}
private void startActivity(Intent chooser) {
}
}
.....
在同一Java类文件中(活动) .....
Public class MainActivity.....
.....
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Thread.setDefaultUncaughtExceptionHandler(new TopExceptionHandler(this));
.....
答案 16 :(得分:-1)
尝试使用Android的Carsh日志应用程序。
使用link下载应用。
答案 17 :(得分:-1)
使用这个库`依赖{ ///........
实现'cat.ereza:customactivityoncrash:2.3.0'
}`