您好,登錄后才能下訂單哦!
import android.util.Log;
/**
*
* 日志工具
*
*/
public class LogUtil
{
private static final boolean WRITE_LOG = true;
private static boolean hasLogFile = false;
private static String TAG = "LogUtil";
private LogUtil()
{
}
@SuppressWarnings("unused")
public static void v(String tag, String msg)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.v(tag, logInfo);
}
}
@SuppressWarnings("unused")
public static void v(String tag, String msg, Throwable tr)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.v(tag, logInfo, tr);
}
}
@SuppressWarnings("unused")
public static void d(String tag, String msg)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.d(tag, logInfo);
}
}
@SuppressWarnings("unused")
public static void d(String tag, String msg, Throwable tr)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
String methodName = "";
int lineNumber = 0;
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.d(tag, logInfo, tr);
}
}
@SuppressWarnings("unused")
public static void i(String tag, String msg)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
String methodName = "";
int lineNumber = 0;
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.i(tag, logInfo);
}
}
@SuppressWarnings("unused")
public static void i(String tag, String msg, Throwable tr)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.i(tag, logInfo, tr);
}
}
public static void e(String tag, String msg, Throwable tr)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.e(tag, logInfo, tr);
}
public static void e(String tag, String msg)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.e(tag, logInfo);
}
@SuppressWarnings("unused")
public static void w(String tag, String msg)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.w(tag, logInfo);
}
}
@SuppressWarnings("unused")
public static void w(String tag, String msg, Throwable tr)
{
if (WRITE_LOG || hasLogFile)
{
String className = "";
String logInfo = "";
try
{
String fullClassName = Thread.currentThread().getStackTrace()[3].getClassName();
// 獲取打印日志所在的類名
className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
// 獲取打印日志所在的方法名
String methodName = Thread.currentThread().getStackTrace()[3].getMethodName();
// 獲取日志所在的行號
int lineNumber = Thread.currentThread().getStackTrace()[3].getLineNumber();
// 日志信息。包括了 方法名字 行數 時間 以及要打印的信息
logInfo = className + ":" + methodName + "() line(" + lineNumber + "):" + msg;
}
catch (Exception e)
{
className = tag;
logInfo = msg;
Log.e(TAG, "log error");
}
if (tag == null || "".equals(tag))
{
tag = className;
}
Log.w(tag, logInfo, tr);
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。