快速业务通道

Java线程运行栈信息的获取 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19
g.apache.log4j.Category.log(Category.java:512)

那么,往下走4行,就可以回到用户程序本身的调用信息:

at callers.fully.qualified.className.methodName(FileName.java:74)

这一行里面,类名、方法名、文件名、行号等信息全有了。解析这一行,就可以获得需要的所有信息。

三、JDK1.4 Log的相关实现

Log4J大获成功,Sun决定在JDK1.4中引入这个Log功能。

为了免去解析StackTrace字符串的麻烦,JDK1.4引入了一个新的类,StackTraceElement。

public final class StackTraceElement implements java.io.Serializable { // Normally initialized by VM (public constructor added in 1.5) private String declaringClass; private String methodName; private String fileName; private int lineNumber;

可以看到,恰好包括类名、方法名、文件名、行号等信息。

我们来看JDK1.4 Log的相关实现。

LocationInfo.java 的infoCaller方法(推算调用者)

// Private method to infer the callers class and method names private void inferCaller() { … // Get the stack trace. StackTraceElement stack[] = (new Throwable()).getStackTrace(); // First, search back to a method in the Logger class. …. // 这里的代码省略 // Now search for the first frame before the "Logger" class. while (ix StackTraceElement frame = stack[ix]; String cname = frame.getClassName(); if (!cname.equals("java.util.logging.Logger")) // Weve found the relevant frame. … // 这里的代码省略 } // We haven found a suitable frame, so just punt. This is // OK as we are only committed to making a "best effort" here. }

从注释中就可以看出实现思路。过程和Log4J异曲同工。只是免去了解析字符串的麻烦。

Java线程运行栈信息的获取(3)

时间:2011-02-13

四、Log4J 1.3 alpha的相关实现

既然JDK1.4中引入了StackTraceElement类,Log4J也要与时俱进。LocationInfo类也有了相应的变化。

/** Instantiate location information based on a Throwable. We expect the Throwable t, to be in the format java.lang.Throwable ... at org.apache.log4j.PatternLayout.format(PatternLayout.java:413) at org.apache.log4j.FileAppender.doAppend(FileAppender.java:183) at org.apache.log4j.Category.callAppenders(Category.java:131) at org.apache.log4j.Category.log(Category.java:512) at callers.fully.qualified.className.methodName(FileName.java:74) ... However, we can also deal with JIT compilers that "lose" the location information, especially between the parentheses. */ public LocationInfo(Throwable t, String fqnOfInvokingClass) { if(PlatformInfo.hasStackTraceElement()) { StackTraceElementExtractor.extract(this, t, fqnOfInvokingClass); } else { LegacyExtractor.extract(this, t, fqnOfInvokingClass); } }

可以看到,Log4J首先判断Java平台是否支持StackTraceElement,如果是,那么用StackTraceElementExtractor,否则使用原来的LegacyExtractor。

下面来看StackTraceElementExtractor.java

/** * A faster extractor based on StackTraceElements introduced in JDK 1.4. * * The present code uses reflection. Thus, it should compile on all platforms. * * @author Martin Schulz * @author Ceki Gülcü * */ public class StackTraceElementExtractor { protected static boolean haveStac

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号