-g
option for the compiler. Before you build and compile your program, make sure these options are set by choosing Project -> Edit. In the Edit Project window's Build Tab, you can specify the -g
option in the Javac options box.
Microsoft Windows and Microsoft NT users must install and configure TCP/IP software before using the JDE debugger.
To examine your source code, you'll first want to set a breakpoint in your program before starting a debugging session -- the debugger does not automatically set any breakpoints in a program.
If you haven't set any breakpoints in your program before you begin a debugging session, you can do one of the following:
Once you start debugging your project's source code in the source editor, you can examine the stack, variables and global variables using the Threads/Stack window.
While debugging your Java program, you can also:
See also: