Android实现将应用崩溃信息发送给开发者并重启应用的方法_Android

本文实例讲述了Android实现将应用崩溃信息发送给开发者并重启应用的方法。分享给大家供大家参考,具体如下:

在开发过程中,虽然经过测试,但在发布后,在广大用户各种各样的运行环境和操作下,可能会发生一些异想不到的错误导致程序崩溃。将这些错误信息收集起来并反馈给开发者,对于开发者改进优化程序是相当重要的。好了,下面就来实现这种功能吧。

(更正时间:2012年2月9日18时42分07秒)

由于为历史帖原因,以下做法比较浪费,但抓取异常的效果是一样的。

1.对于UI线程(即Android中的主线程)抛出的未捕获异常,将这些异常信息存储起来然后关闭到整个应用程序。并再次启动程序,则进入崩溃信息反馈界面让用户将出错信息以Email的形式发送给开发者。

2.对于非UI线程抛出的异常,则立即唤醒崩溃信息反馈界面提示用户将出错信息发送Email。

效果图如下:

过程了解了,则需要了解的几个知识点如下:

1.拦截UncaughtException

Application.onCreate()是整个Android应用的入口方法。在该方法中执行如下代码即可拦截UncaughtException:

ueHandler = new UEHandler(this);
// 设置异常处理实例
Thread.setDefaultUncaughtExceptionHandler(ueHandler);

2.抓取导致程序崩溃的异常信息

UEHandler是Thread.UncaughtExceptionHandler的实现类,在其public void uncaughtException(Thread thread, Throwable ex)的实现中可以获取崩溃信息,代码如下:

// fetch Excpetion Info
String info = null;
ByteArrayOutputStream baos = null;
PrintStream printStream = null;
try {
  baos = new ByteArrayOutputStream();
  printStream = new PrintStream(baos);
  ex.printStackTrace(printStream);
  byte[] data = baos.toByteArray();
  info = new String(data);
  data = null;
} catch (Exception e) {
  e.printStackTrace();
} finally {
  try {
    if (printStream != null) {
      printStream.close();
    }
    if (baos != null) {
      baos.close();
    }
  } catch (Exception e) {
    e.printStackTrace();
  }
}

3.程序抛异常后,要关闭整个应用

悲催的程序员,唉,以下三种方式都无效了,咋办啊!!!

3.1 android.os.Process.killProcess(android.os.Process.myPid());

3.2 ActivityManager am = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
am.restartPackage("lab.sodino.errorreport");

3.3 System.exit(0)

好吧,毛主席告诉我们:自己动手丰衣足食。

SoftApplication中声明一个变量need2Exit,其值为true标识当前的程序需要完整退出;为false时该干嘛干嘛去。该变量在应用的启动Activity.onCreate()处赋值为false。

在捕获了崩溃信息后,调用SoftApplication.setNeed2Exit(true)标识程序需要退出,并finish()掉ActErrorReport,这时ActErrorReport退栈,抛错的ActOccurError占据手机屏幕,根据Activity的生命周期其要调用onStart(),则我们在onStart()处读取need2Exit的状态,若为true,则也关闭到当前的Activity,则退出了整个应用了。此方法可以解决一次性退出已开启了多个Activity的Application。详细代码请阅读下面的示例源码。

好了,代码如下:

lab.sodino.errorreport.SoftApplication.java

package lab.sodino.errorreport;
import java.io.File;
import android.app.Application;
/**
 * @author Sodino E-mail:sodinoopen@hotmail.com
 * @version Time:2011-6-9 下午11:49:56
 */
public class SoftApplication extends Application {
  /** "/data/data/<app_package>/files/error.log" */
  public static final String PATH_ERROR_LOG = File.separator + "data" + File.separator + "data"
      + File.separator + "lab.sodino.errorreport" + File.separator + "files" + File.separator
      + "error.log";
  /** 标识是否需要退出。为true时表示当前的Activity要执行finish()。 */
  private boolean need2Exit;
  /** 异常处理类。 */
  private UEHandler ueHandler;
  public void onCreate() {
    need2Exit = false;
    ueHandler = new UEHandler(this);
    // 设置异常处理实例
    Thread.setDefaultUncaughtExceptionHandler(ueHandler);
  }
  public void setNeed2Exit(boolean bool) {
    need2Exit = bool;
  }
  public boolean need2Exit() {
    return need2Exit;
  }
}

lab.sodino.errorreport.ActOccurError.java

package lab.sodino.errorreport;
import java.io.File;
import java.io.FileInputStream;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
public class ActOccurError extends Activity {
  private SoftApplication softApplication;
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    softApplication = (SoftApplication) getApplication();
    // 一开始进入程序恢复为"need2Exit=false"。
    softApplication.setNeed2Exit(false);
    Log.d("ANDROID_LAB", "ActOccurError.onCreate()");
    Button btnMain = (Button) findViewById(R.id.btnThrowMain);
    btnMain.setOnClickListener(new Button.OnClickListener() {
      public void onClick(View v) {
        Log.d("ANDROID_LAB", "Thread.main.run()");
        int i = 0;
        i = 100 / i;
      }
    });
    Button btnChild = (Button) findViewById(R.id.btnThrowChild);
    btnChild.setOnClickListener(new Button.OnClickListener() {
      public void onClick(View v) {
        new Thread() {
          public void run() {
            Log.d("ANDROID_LAB", "Thread.child.run()");
            int i = 0;
            i = 100 / i;
          }
        }.start();
      }
    });
    // 处理记录于error.log中的异常
    String errorContent = getErrorLog();
    if (errorContent != null) {
      Intent intent = new Intent(this, ActErrorReport.class);
      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      intent.putExtra("error", errorContent);
      intent.putExtra("by", "error.log");
      startActivity(intent);
    }
  }
  public void onStart() {
    super.onStart();
    if (softApplication.need2Exit()) {
      Log.d("ANDROID_LAB", "ActOccurError.finish()");
      ActOccurError.this.finish();
    } else {
      // do normal things
    }
  }
  /**
   * 读取是否有未处理的报错信息。<br/>
   * 每次读取后都会将error.log清空。<br/>
   *
   * @return 返回未处理的报错信息或null。
   */
  private String getErrorLog() {
    File fileErrorLog = new File(SoftApplication.PATH_ERROR_LOG);
    String content = null;
    FileInputStream fis = null;
    try {
      if (fileErrorLog.exists()) {
        byte[] data = new byte[(int) fileErrorLog.length()];
        fis = new FileInputStream(fileErrorLog);
        fis.read(data);
        content = new String(data);
        data = null;
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      try {
        if (fis != null) {
          fis.close();
        }
        if (fileErrorLog.exists()) {
          fileErrorLog.delete();
        }
      } catch (Exception e) {
        e.printStackTrace();
      }
    }
    return content;
  }
}

lab.sodino.errorreport.ActErrorReport.java

package lab.sodino.errorreport;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
/**
 * @author Sodino E-mail:sodinoopen@hotmail.com
 * @version Time:2011-6-12 下午01:34:17
 */
public class ActErrorReport extends Activity {
  private SoftApplication softApplication;
  private String info;
  /** 标识来处。 */
  private String by;
  private Button btnReport;
  private Button btnCancel;
  private BtnListener btnListener;
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.report);
    softApplication = (SoftApplication) getApplication();
    by = getIntent().getStringExtra("by");
    info = getIntent().getStringExtra("error");
    TextView txtHint = (TextView) findViewById(R.id.txtErrorHint);
    txtHint.setText(getErrorHint(by));
    EditText editError = (EditText) findViewById(R.id.editErrorContent);
    editError.setText(info);
    btnListener = new BtnListener();
    btnReport = (Button) findViewById(R.id.btnREPORT);
    btnCancel = (Button) findViewById(R.id.btnCANCEL);
    btnReport.setOnClickListener(btnListener);
    btnCancel.setOnClickListener(btnListener);
  }
  private String getErrorHint(String by) {
    String hint = "";
    String append = "";
    if ("uehandler".equals(by)) {
      append = " when the app running";
    } else if ("error.log".equals(by)) {
      append = " when last time the app running";
    }
    hint = String.format(getResources().getString(R.string.errorHint), append, 1);
    return hint;
  }
  public void onStart() {
    super.onStart();
    if (softApplication.need2Exit()) {
      // 上一个退栈的Activity有执行“退出”的操作。
      Log.d("ANDROID_LAB", "ActErrorReport.finish()");
      ActErrorReport.this.finish();
    } else {
      // go ahead normally
    }
  }
  class BtnListener implements Button.OnClickListener {
    @Override
    public void onClick(View v) {
      if (v == btnReport) {
        // 需要 android.permission.SEND权限
        Intent mailIntent = new Intent(Intent.ACTION_SEND);
        mailIntent.setType("plain/text");
        String[] arrReceiver = { "sodinoopen@hotmail.com" };
        String mailSubject = "App Error Info[" + getPackageName() + "]";
        String mailBody = info;
        mailIntent.putExtra(Intent.EXTRA_EMAIL, arrReceiver);
        mailIntent.putExtra(Intent.EXTRA_SUBJECT, mailSubject);
        mailIntent.putExtra(Intent.EXTRA_TEXT, mailBody);
        startActivity(Intent.createChooser(mailIntent, "Mail Sending..."));
        ActErrorReport.this.finish();
      } else if (v == btnCancel) {
        ActErrorReport.this.finish();
      }
    }
  }
  public void finish() {
    super.finish();
    if ("error.log".equals(by)) {
      // do nothing
    } else if ("uehandler".equals(by)) {
      // 1.
      // android.os.Process.killProcess(android.os.Process.myPid());
      // 2.
      // ActivityManager am = (ActivityManager)
      // getSystemService(ACTIVITY_SERVICE);
      // am.restartPackage("lab.sodino.errorreport");
      // 3.
      // System.exit(0);
      // 1.2.3.都失效了,Google你让悲催的程序员情何以堪啊。
      softApplication.setNeed2Exit(true);
      // ////////////////////////////////////////////////////
      // // 另一个替换方案是直接返回“HOME”
      // Intent i = new Intent(Intent.ACTION_MAIN);
      // // 如果是服务里调用,必须加入newtask标识
      // i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      // i.addCategory(Intent.CATEGORY_HOME);
      // startActivity(i);
      // ////////////////////////////////////////////////////
    }
  }
}

lab.sodino.errorreport.UEHandler.java

package lab.sodino.uncaughtexception;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.PrintStream;
import android.content.Intent;
import android.util.Log;
/**
 * @author Sodino E-mail:sodinoopen@hotmail.com
 * @version Time:2011-6-9 下午11:50:43
 */
public class UEHandler implements Thread.UncaughtExceptionHandler {
  private SoftApplication softApp;
  private File fileErrorLog;
  public UEHandler(SoftApplication app) {
    softApp = app;
    fileErrorLog = new File(SoftApplication.PATH_ERROR_LOG);
  }
  @Override
  public void uncaughtException(Thread thread, Throwable ex) {
    // fetch Excpetion Info
    String info = null;
    ByteArrayOutputStream baos = null;
    PrintStream printStream = null;
    try {
      baos = new ByteArrayOutputStream();
      printStream = new PrintStream(baos);
      ex.printStackTrace(printStream);
      byte[] data = baos.toByteArray();
      info = new String(data);
      data = null;
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      try {
        if (printStream != null) {
          printStream.close();
        }
        if (baos != null) {
          baos.close();
        }
      } catch (Exception e) {
        e.printStackTrace();
      }
    }
    // print
    long threadId = thread.getId();
    Log.d("ANDROID_LAB", "Thread.getName()=" + thread.getName() + " id=" + threadId + " state=" + thread.getState());
    Log.d("ANDROID_LAB", "Error[" + info + "]");
    if (threadId != 1) {
      // 此处示例跳转到汇报异常界面。
      Intent intent = new Intent(softApp, ActErrorReport.class);
      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      intent.putExtra("error", info);
      intent.putExtra("by", "uehandler");
      softApp.startActivity(intent);
    } else {
      // 此处示例发生异常后,重新启动应用
      Intent intent = new Intent(softApp, ActOccurError.class);
      // 如果<span style="background-color: rgb(255, 255, 255); ">没有NEW_TASK标识且</span>是UI线程抛的异常则界面卡死直到ANR
      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      softApp.startActivity(intent);
      // write 2 /data/data/<app_package>/files/error.log
      write2ErrorLog(fileErrorLog, info);
      // kill App Progress
      android.os.Process.killProcess(android.os.Process.myPid());
    }
  }
  private void write2ErrorLog(File file, String content) {
    FileOutputStream fos = null;
    try {
      if (file.exists()) {
        // 清空之前的记录
        file.delete();
      } else {
        file.getParentFile().mkdirs();
      }
      file.createNewFile();
      fos = new FileOutputStream(file);
      fos.write(content.getBytes());
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      try {
        if (fos != null) {
          fos.close();
        }
      } catch (Exception e) {
        e.printStackTrace();
      }
    }
  }
}

/res/layout/main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
  <Button android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Throws Exception By Main Thread"
    android:id="@+id/btnThrowMain"
  ></Button>
  <Button android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Throws Exception By Child Thread"
    android:id="@+id/btnThrowChild"
  ></Button>
</LinearLayout>

/res/layout/report.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <TextView android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/errorHint"
    android:id="@+id/txtErrorHint" />
  <EditText android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/editErrorContent"
    android:editable="false" android:layout_weight="1"></EditText>
  <LinearLayout android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:background="#96cdcd"
    android:gravity="center" android:orientation="horizontal">
    <Button android:layout_width="fill_parent"
      android:layout_height="wrap_content" android:text="Report"
      android:id="@+id/btnREPORT" android:layout_weight="1"></Button>
    <Button android:layout_width="fill_parent"
      android:layout_height="wrap_content" android:text="Cancel"
      android:id="@+id/btnCANCEL" android:layout_weight="1"></Button>
  </LinearLayout>
</LinearLayout>

用到的string.xml资源为:

复制代码 代码如下:

<string name="errorHint">A error has happened %1$s.Please click <i><b>"REPORT"</b></i> to send the error information to us by email, Thanks!!!</string>

重要的一点是要在AndroidManifest.xml中对<application>节点设置android:name=".SoftApplication"

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android调试技巧与常见问题解决方法汇总》、《Android开发入门与进阶教程》、《Android多媒体操作技巧汇总(音频,视频,录音等)》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
, 发送
, 重启应用
应用崩溃信息
微信开发者工具 重启、微信开发者发送图片、nodejs 崩溃自动重启、android 崩溃重启app、android 崩溃重启,以便于您获取更多的相关知识。

时间: 2024-09-18 18:34:15

Android实现将应用崩溃信息发送给开发者并重启应用的方法_Android的相关文章

[Android]将应用崩溃信息汇报给开发者并重新启动应用

http://blog.csdn.net/sodino/article/details/6540329 在开发过程中,虽然经过测试,但在发布后,在广大用户各种各样的运行环境和操作下,可能会发生一些异想不到的错误导致程序崩溃.将这些错误信息收集起来并反馈给开发者,对于开发者改进优化程序是相当重要的.好了,下面就来实现这种功能吧. (更正:2012年2月9日18时42分07秒) 由于为历史帖原因,以下做法比较浪费,但抓取异常的效果是一样的. 1.对于UI线程(即Android中的主线程)抛出的未捕获

Android编程实现QQ表情的发送和接收完整实例(附源码)_Android

本文实例讲述了Android编程实现QQ表情的发送和接收.分享给大家供大家参考,具体如下: 在自己做一个聊天应用练习的时候,需要用到表情,于是就想着模仿一下QQ表情,图片资源完全copy的QQ.apk,解压就可以得到,这里不细说. 下面将该应用中的表情模块功能抽离出来,以便自己以后复习回顾.. 先看一下效果图: 首先进入界面:(完全仿照QQ) 点击一下上面的表情图标: 选择一些表情,输入一些文字混合: 点击发送: 可以看到文字和表情图片都一起显示出来了. 下面列出一些关键代码: 表情工具类Exp

Android编程使用HTTP协议与TCP协议实现上传文件的方法_Android

本文实例讲述了Android编程使用HTTP协议与TCP协议实现上传文件的方法.分享给大家供大家参考,具体如下: Android上传文件有两种方式,第一种是基于Http协议的HttpURLConnection,第二种是基于TCP协议的Socket. 这两种方式的区别是使用HttpURLConnection上传时内部有缓存机制,如果上传较大文件会导致内存溢出.如果用TCP协议Socket方式上传就会解决这种弊端. HTTP协议HttpURLConnection 1. 通过URL封装路径打开一个Ht

Android实现获取未接来电和未读短信数量的方法_Android

本文实例展示了Android实现获取未接来电和未读短信数量的方法,在Android程序开发中非常常见,是非常实用的功能,现分享给大家供大家参考.具体如下: 一.未读短信  首先注册Observer,当有新短信或彩信来的时候会调用 onChange方法,我们可以在onChange方法中去获取未读短信和彩信,然后做一些UI上的处理! 具体功能代码如下: private ContentObserver newMmsContentObserver = new ContentObserver(new Ha

Android线程中设置控件的值提示报错的解决方法_Android

本文实例讲述了Android线程中设置控件的值提示报错的解决方法.分享给大家供大家参考,具体如下: 在Android线程中设置控件的值一般会与Handler联合使用,如下: package com.yarin.android.Examples_04_15; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import andro

Android编程中出现The connection to adb is down问题的解决方法_Android

本文分析了Android编程中出现The connection to adb is down问题的解决方法.分享给大家供大家参考,具体如下: 1.报错: BUILD FAILED D:\workspace\ganji\build.xml:144: The following error occurred while executing this line: D:\workspace\ganji\build.xml:271: Unable to delete file D:\workspace\g

Android Listview 滑动过程中提示图片重复错乱的原因及解决方法_Android

主要分析Android中Listview滚动过程造成的图片显示重复.错乱.闪烁的原因及解决方法,顺便跟进Listview的缓存机制. 1.原因分析 Listview item 缓存机制:为了使得性能更优,Listview会缓存行item(某行对应的view).listview通过adapter的getview函数获得每行的item.滑动过程中, a.如果某行item已经划出屏幕,若该item不在缓存内,则put进缓存,否则更新缓存: b.获取滑入屏幕的行item之前会先判断缓存中是否有可用的it

Android设置TextView显示指定个数字符,超过部分显示...(省略号)的方法_Android

本文实例讲述了Android设置TextView显示指定个数字符,超过部分显示...(省略号)的方法.分享给大家供大家参考,具体如下: 一.问题: 今天在公司遇到一个需求:TextView设置最多显示8个字符,超过部分显示...(省略号) 二.解决方法: 网上找了很多资料,有人说分别设置TextView的android:signature="true",并且设置android:ellipsize="end";但是我试了,并没有成功,最后自己试出一种方式如下:供大家参

Android编程获取网络连接方式及判断手机卡所属运营商的方法_Android

本文实例讲述了Android编程获取网络连接方式及判断手机卡所属运营商的方法.分享给大家供大家参考,具体如下: 问题:项目中写的网络模块,感觉有点乱:两套代码 --模拟器.真机,维护起来十分麻烦. 解决办法:代码自动去检查到那种网络环境,然后调用不同的联网方式. 查看了模拟器上默认的接入点:移动网络 -- APN = "internet" 1.通过获取apn的名称,来判断网络 // 获取Mobile网络下的cmwap.cmnet private int getCurrentApnInU