请求 Java ThreadInfo 的堆栈跟踪?

发布于 2024-10-04 19:51:23 字数 623 浏览 3 评论 0原文

我有一个应用程序在 java.lang.management.ThreadInfo 对象上调用 getStackTrace(),但调用生成的 StackTraceElement 数组是零长度。

检查 Javadoc 显示了这一点(强调我的):

public StackTraceElement[] getStackTrace()

返回与此 ThreadInfo 关联的线程的堆栈跟踪。 如果没有为此线程信息请求堆栈跟踪,则此方法将返回零长度数组。如果返回的数组的长度非零,则数组的第一个元素表示堆栈的顶部,这是序列中最近的方法调用。数组的最后一个元素表示堆栈的底部,它是序列中最近的方法调用。

如何请求此线程信息的堆栈跟踪?

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()

Returns the stack trace of the thread associated with this ThreadInfo. If no stack trace was requested for this thread info, this method will return a zero-length array. If the returned array is of non-zero length then the first element of the array represents the top of the stack, which is the most recent method invocation in the sequence. The last element of the array represents the bottom of the stack, which is the least recent method invocation in the sequence.

How do I request a stack trace for this thread info?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

中二柚 2024-10-11 19:51:23

您如何调用 getThreadInfo()

您是否指定堆栈跟踪深度?

getThreadInfo(long id, int maxDepth)
返回指定 id 的线程的线程信息,带有堆栈
跟踪指定数量的堆栈
微量元素。

How are you calling getThreadInfo()?

Are you specifying a stack trace depth?

getThreadInfo(long id, int maxDepth)
Returns a thread info for a thread of the specified id, with stack
trace of a specified number of stack
trace elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文