Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question is very similar to that question:

however it is more specific. I would like to dump stack trace also with local variables that are java primitives e.g. int. In other words I would like to see the stack trace in the state it is visible during debugging. Is it possible with VisualVM or other software?

share|improve this question
You can get this information with a debugger. – Peter Lawrey May 21 '11 at 9:05
I know, but I need to get this info during thread (or another) dump. My JVM gets stuck and I want to see its complete state, both heap and full stack frames. – krzys May 21 '11 at 12:37
I believe only the debugger can do that. You could try using JVMTI interface to get debug information with a minimal pause to the application. – Peter Lawrey May 21 '11 at 12:53
Thank you for answer. – krzys May 21 '11 at 14:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.