我如何记录此异常?

时间:2011-04-24 14:28:29

标签: android exception android-logcat

我想记录此异常,但我不知道该怎么做:

catch (ParseException pe) {
updateStatus("Connection Error.");

3 个答案:

答案 0 :(得分:2)

如果通过记录此异常,则表示要向LogCat写一行,只需使用Log class

Log.e("tag", "Some error message you want to log");

答案 1 :(得分:2)

使用android.util.Log类:

Log.e("App-or-Class-identifier-for-filtering", "error message", pe);

答案 2 :(得分:1)

您也可以使用pe.printStackTrace()。