11_查看與輸出日志信息
---------------------------
1.查看日志和錯誤信息
因為不會在control控制台輸出錯誤信息,所以要通過
window-->show view-->logcat顯示
---------------------------------------------------------
2.如何輸出日志信息
package com.credream.test;
import android.util.Log;
public class LogTest
{
private static final String TAG="LogTest";
public void testOutLog()throws Throwable{
Log.i(TAG, "www.itdream.com");
}
public void testOutLog2()throws Throwable{
System.out.println("www.credream.com");
}
public void testOutLog3()throws Throwable{
System.err.println("www.mydream.com");
}
}
---------------------------------------------------
選擇相應的方法,來右鍵android junit test就可以了
其中:
System.out.println("www.credream.com");tag為:System.out
System.err.println("www.mydream.com");tag為:System.err
Log.i(TAG, "創夢網絡");這時候出現亂碼,這是因為不支持,程序是沒有問題的
-----------------------------------------------------------------------