Tagged Questions
5
votes
7answers
392 views
Which Java debugger do *you* use
I spend a lot of time debugging applications in Eclipse using JPDA. There are a few issues with the Eclipse debugger which really annoy me. Can anybody recommend plug-ins, better debuggers or perhaps ...
3
votes
2answers
66 views
java debugging - watch an out of scope variable
When debugging a C/C++ application I can create a watch of an address cast to a pointer type and then view that contents of a structure even when it goes out of scope. Is it possible to achieve ...
3
votes
1answer
300 views
Java Access to Local Variable Names
I'm currently writing a program in which I would like to access the variable names of local variables during execution of a program and pass them off externally. I'm aware that Java will dump local ...
0
votes
2answers
68 views
Java API to turn on debugging in a running JVM
Is there a programmatic way to turn on debugging in a running JVM instance? I am looking for an API that would make a running JVM, a debug server. The API would do the equivalent of
-Xdebug ...
0
votes
1answer
295 views
Learning to debug in Java
I'm both learning to use the JPDA on Netbeans and solving the Prime Generator problem of Sphere's Online Judge.
I've been reading this tutorial on netbeans.org about he JPDA, but haven't found it ...