Android获取Java类名/文件名/方法名/行号

【Android获取Java类名/文件名/方法名/行号】男儿欲遂平生志,五经勤向窗前读。这篇文章主要讲述Android获取Java类名/文件名/方法名/行号相关的知识,希望能为你提供帮助。

/** * android打印方法路径 */ public static void printMethodPath() { //new 一个异常类 Exception exception = new Exception(); //调用者上级类名 Log.i(TAG, "Class0— — — > :" + exception.getStackTrace()[0].getClassName()); //调用者上级的上级类名 Log.i(TAG, "Class1— — — > :" + exception.getStackTrace()[1].getClassName()); //调用者上级的方法名 Log.i(TAG, "MethodName0— — — > :" + exception.getStackTrace()[0].getMethodName()); //调用者上级的上级方法名 Log.i(TAG, "MethodName1— — — > :" + exception.getStackTrace()[1].getMethodName()); //当前方法行号 Log.i(TAG, "line0— — — > :" + exception.getStackTrace()[0].getLineNumber()); //调用方法行号 Log.i(TAG, "line1— — — > :" + exception.getStackTrace()[1].getLineNumber()); }


    推荐阅读