Andriod工具类

Posted mjtabu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Andriod工具类相关的知识,希望对你有一定的参考价值。

 

 /**
     * 打印方法路径
     * @param type 0:方法开始,1:方法结束,2:方法异常,3:方法
     */
    public static void printMethodPath(String type){
        Exception exception = new Exception();
        try {
            if ("0".equals(type)){
                type = "方法开始";
            }else if("1".equals(type)) {
                type = "方法结束";
            }else if("2".equals(type)) {
                type = "方法异常";
            } else {
                type = "方法";
            }
            //exception.getStackTrace()[0].getClassName():0为当前方法类名;1为调用者类名.
            Log.i(TAG,"Class———>:" + exception.getStackTrace()[1].getClassName() + exception.getStackTrace()[1].getMethodName() + type +  " line:" + exception.getStackTrace()[1].getLineNumber());
        } catch (Exception e) {
            e.printStackTrace();
            FileLog.e(TAG,e.getMessage(),e);
        }
    }

以上是关于Andriod工具类的主要内容,如果未能解决你的问题,请参考以下文章

Andriod使用webview控件往APP里内嵌网页

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

应用程序可能在 Andriod 中的主线程(Firebase 数据库)上做了太多工作

软件工程——个人总结

100天精通Andriod逆向——第4天:各种抓包工具学习

100天精通Andriod逆向——第4天:各种抓包工具学习