Android實現將應用崩潰資訊發送給開發人員並重啟應用的方法_Android

來源:互聯網
上載者:User

本文執行個體講述了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 InfoString 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程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.