本文介绍了请求Java ThreadInfo的堆栈跟踪?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个应用程序在 java.lang.management.ThreadInfo
对象上调用 getStackTrace()
,但是调用产生的 StackTraceElement
数组为零长度。
I have an application that calls getStackTrace()
on a java.lang.management.ThreadInfo
object, but the StackTraceElement
array produced by the invocation is zero length.
检查显示了这一点(强调我的):
Inspecting the Javadoc shows this (emphasis mine):
public StackTraceElement[] getStackTrace()
如何为此线程信息请求堆栈跟踪?
推荐答案
您如何调用?
您是否指定了堆栈跟踪深度?
Are you specifying a stack trace depth?
这篇关于请求Java ThreadInfo的堆栈跟踪?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!