java 获取当前方法的被调用信息(被那个方法那个类那一行调用)
public void testMethod(){ Test1 t1 = new Test1(); t1.my(); } public static void main(String[] args) { Test t = new Test(); t.testMethod(); } class Test1{ public void my(){ String tag = this.getMyGrandpaStackTrace(); System.err.println(String.format("调用我的人是:%s", tag)); } public String getMyGrandpaStackTrace(){ StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); StackTraceElement father = stackTrace[1]; StackTraceElement log = stackTrace[2]; String tag = null; for (int i = 1; i < stackTrace.length; i++) { StackTraceElement e = stackTrace[i]; if (!e.getClassName().equals(log.getClassName())) { tag = e.getClassName() + "." + e.getMethodName(); break; } } if (tag == null) { tag = log.getClassName() + "." + log.getMethodName(); } System.err.println(String.format("My father is %s.%s", father.getClassName() ,father.getMethodName())); System.err.println(String.format("My grandpa is %s",tag)); return tag; } }
作者:诗和远方
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.