|
Online Stack Trace Tool for JavaThe ProblemHave you ever needed to get a stack trace of a Java program running on someone else's computer? If they aren't running the application from the command-line it can be difficult. Or if it is a remote system it can be hard to walk someone through the debugging process.A Helpful ToolA nice company called AdaptJ Systems (with whom I have no relation) has a free online tool called StackTrace.When you launch StackTrace on a system with a running Java program, it provides the option to connect to a running Java process. Select the right process then click on the icon to generate a stack trace. Cut-and paste the text or save it in a file to debug offline. This can be particularly helpful to debug Swing threading issues. If the app appears frozen and you think its due to deadlock, that will usually show up in the stack trace, look for two threads waiting on each other's locks in reverse order. |
Copyright © 2024 Andrew Oliver