我想记录此异常,但我不知道该怎么做:
catch (ParseException pe) {
updateStatus("Connection Error.");
答案 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()。