Android小技巧:實現捕獲應用的運行時異常 分類: Android其餘 2015-06-23 12:26 12人閱讀 評論(0) 收藏

因爲Android設備各異,第三方定製的Android系統也很是多,咱們不可能對全部的設備場景都進行測試,於是開發一款徹底無bug的應用幾乎是不可能的任務,那麼當應用在用戶的設備上Force Close時,咱們是否是能夠捕獲這個錯誤,記錄用戶的設備信息,而後讓用戶選擇是否反饋這些堆棧信息,經過這種bug反饋方式,咱們能夠有針對性地對bug進行修復。java

當咱們的的應用因爲運行時異常致使Force Close的時候,能夠設置主線程的UncaughtExceptionHandler,實現捕獲運行時異常的堆棧信息。同時用戶能夠把堆棧信息經過發送郵件的方式反饋給咱們。下面是實現的代碼:android

TestActivity.javaapp

view plain
package com.zhuozhuo; 
 
import java.io.PrintWriter; 
import java.io.StringWriter; 
import java.lang.Thread.UncaughtExceptionHandler
 
import android.app.Activity; 
import android.content.Intent; 
import android.net.Uri; 
import android.os.Build; 
import android.os.Bundle; 
import android.util.Log; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.EditText; 
import android.widget.TextView; 
 
public class TestActivity extends Activity { 
     
 
 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
        Thread.setDefaultUncaughtExceptionHandler(new UncaughtExceptionHandler() {//給主線程設置一個處理運行時異常的handler 
 
            @Override 
            public void uncaughtException(Thread thread, final Throwable ex) { 
 
                StringWriter sw = new StringWriter(); 
                PrintWriter pw = new PrintWriter(sw); 
                ex.printStackTrace(pw); 
                 
                StringBuilder sb = new StringBuilder(); 
                 
                sb.append("Version code is "); 
                sb.append(Build.VERSION.SDK_INT + "\n");//設備的Android版本號 
                sb.append("Model is "); 
                sb.append(Build.MODEL+"\n");//設備型號 
                sb.append(sw.toString()); 
 
                Intent sendIntent = new Intent(Intent.ACTION_SENDTO); 
                sendIntent.setData(Uri.parse("mailto:csdn@csdn.com"));//發送郵件異常到csdn@csdn.com郵箱 
                sendIntent.putExtra(Intent.EXTRA_SUBJECT, "bug report");//郵件主題 
                sendIntent.putExtra(Intent.EXTRA_TEXT, sb.toString());//堆棧信息 
                startActivity(sendIntent); 
                finish(); 
            } 
        }); 
         
        findViewById(R.id.button).setOnClickListener(new OnClickListener() { 
             
            @Override 
            public void onClick(View v) { 
                Integer a = null; 
                a.toString();//觸發nullpointer運行時錯誤 
                 
            } 
        }); 
         
    } 

main.xml
view plain
 
http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
   
        android:layout_height="wrap_content" android:text="@string/hello" /> 
   
        android:text="點擊按鈕觸發運行時異常" android:layout_height="wrap_content" 
        android:layout_weight="1" android:gravity="top"> 
     
 ide

做者「lzc的專欄」測試

相關文章
相關標籤/搜索