android 模拟宏定义,实现Debug & Release 模式
以前在C/C++ 开发中,我们可以宏定义,Debug模式下,输出日志,方便测试。Release模式下,无日志输出。
使用Java时,Java 是解释语言,无法编译。就无模式之分了。有没有办法实现,Debug、Release版?
debug 输出日志、调试信息。
release 发布版本,无输出日志、调试信息。
办法是人想出来的。
下面说说我的解决方案:
1 模拟C宏定义。
[java]
package cn.eben.hpc.define;
public final class BuildConfig {
public final static boolean isDebug = true;// 通过改变isDebug,实现Debug、Release版
}
2 重定义日志输出类
[java]
package cn.eben.hpc.define;
import java.lang.reflect.Method;
import android.util.Log;
public class Trace {
public final static void e(String tag, String msg, Throwable tr) {
if (BuildConfig.isDebug)
Log.e(tag, msg, tr);
}
public final static void e(String tag, String msg) {
if (BuildConfig.isDebug)
Log.e(tag, msg);
}
public final static void e(String msg) {
if (BuildConfig.isDebug)
Log.e("", msg);
}
public final static void e(Throwable tr) {
if (BuildConfig.isDebug)
Log.e("", "", tr);
}
public final static void d(String tag, String msg) {
if (BuildConfig.isDebug)
Log.d(tag, msg);
}
public final static void d(String msg) {
if (BuildConfig.isDebug)
Log.d("", msg);
}
public final static void d(Throwable tr) {
if (BuildConfig.isDebug)
Log.d("", "", tr);
}
}
3 我们工程中使用:
原来使用
Log.i, Log.d, log.e ...
Log.i(TAG,“log”);
使用重定义的日志
Trace.i, Trace.d Trace.e...
Trace.i(“”, “”);
发布版本时,我们只需要将isDebug = false.即可。Release版就干干净净。无日志信息。
安毕。
是不是很简单呀! :)
补充:移动开发 , Android ,