StackTraceElement[] stackTrace =Thread.currentThread().getStackTrace();
String methodName ="unknow";
if(stackTrace!=null&& stackTrace.length>=3){
methodName = stackTrace[2].getMethodName();
}
methodName:被调用的方法名
StackTraceElement[] stackTrace =Thread.currentThread().getStackTrace();
String methodName ="unknow";
if(stackTrace!=null&& stackTrace.length>=3){
methodName = stackTrace[2].getMethodName();
}
methodName:被调用的方法名
本文标题:获取http调用中被调用的方法名
本文链接:https://www.haomeiwen.com/subject/iypvbxtx.html
网友评论