博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA中获取当前运行的类名,方法名,行数
阅读量:5435 次
发布时间:2019-06-15

本文共 678 字,大约阅读时间需要 2 分钟。

public static String getTraceInfo(){            StringBuffer sb = new StringBuffer();                         StackTraceElement[] stacks = new Throwable().getStackTrace();            int stacksLen = stacks.length;            sb.append("class: " ).append(stacks[1].getClassName()).append("; method: ").append(stacks[1].getMethodName()).append("; number: ").append(stacks[1].getLineNumber());                        return sb.toString();        }    String _methodName =    new Exception().getStackTrace()[1].getMethodName();// 获得调用者的方法名    String _thisMethodName =    new Exception().getStackTrace()[0].getMethodName();// 获得当前的方法名

 

转载于:https://www.cnblogs.com/stono/p/5663627.html

你可能感兴趣的文章
vim php代码规范
查看>>
numpy次方计算
查看>>
centos7 搭建LNMP
查看>>
Python OOP(1)
查看>>
delphi 数据库中Connection与Query连接数量问题思考
查看>>
JS图像变换效果的实现
查看>>
sql function递归
查看>>
【Alpha】Daily Scrum Meeting——blog2
查看>>
struts2 局部类型转换器
查看>>
all与any的用法
查看>>
SpringBoot入门教程(六)SpringBoot2.0统一处理404,500等http错误跳转页
查看>>
mysql 去除重复 Select中DISTINCT关键字的用法
查看>>
JSON
查看>>
poj1006
查看>>
win7下搭建WAMP图解(PHP运行环境:win7+Apache2.2+php5.2.8+MySQL5.5)附安装包
查看>>
二、什么是IBeamMDAA
查看>>
TC SRM 562 div2 B 题
查看>>
搜索算法
查看>>
LPC1788的spi使用
查看>>
HttpContext.Current.Request.ServerVariables.AllKeys
查看>>