java:打印当前回溯

发布于 2024-10-18 13:36:09 字数 156 浏览 1 评论 0原文

有没有办法在Java中添加命令来添加当前的回溯?

我正在编写一个 red5 应用程序,并且 appDisconnect 函数被调用两次。每当用户更换房间时。我想在 appDisconnect 函数的开头添加一个函数,显示当前的回溯,然后我可以看到调用它的内容。

谢谢

is there a way to add a command in Java to add the current backtrace ?

I'm writing a red5 application and the appDisconnect function is being called twice. whenever a user changes room. I want to add a function at the beginning of the appDisconnect function that shows the current backtrace and then I can see what called it.

thanks

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

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

发布评论

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

评论(2

小巷里的女流氓 2024-10-25 13:36:09

您可以将堆栈跟踪输出到当前行,如下所示:

new Exception().printStackTrace();

或者,如果您需要编程访问可以使用的堆栈跟踪元素

Thread.currentThread().getStackTrace()

You can output the stack trace to the current line like this:

new Exception().printStackTrace();

Or if you need programmattic acces the the stacktrace elements you can use

Thread.currentThread().getStackTrace()
风为裳 2024-10-25 13:36:09

我知道的唯一方法是查看:

StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace();

尽管这听起来更像是一个日志记录问题,而不是实际观察调用跟踪。您还可以尝试在 IDE 中设置debug执行并添加一些适当的断点。

The only way I know of is to look at:

StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace();

Although this sounds more like a logging issue than actually observing the call trace. You could also try to setup debug execution in your IDE and add a few well placed breakpoints.

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