Compiling, running, and debugging tutorial
This tutorial uses the sample project that is provided in the samples/Tutorials/DebugTutorial
folder of your JBuilder installation. Before running this tutorial, make sure that you have installed the samples
folder.
In this step, you will open the project file and open one of the files in the project. You'll see that syntax errors exist in one of the files.
To open the sample project,
samples/Tutorials/DebugTutorial
folder of your JBuilder installation.
DebugTutorial.jpr.
The project is opened in the project pane. The files in the project are listed in the project pane. This project consists of three files:
Application1.java
- The runnable file, containing the main()
method.
DebugTutorial.html
- The HTML file that provides a descriptive overview of the project.
Frame1.java
- The file that contains the frame, the components, and the methods for the program.
Frame1.java.
This opens the file in the editor and displays its structure in the structure pane.
Notice the Errors
folder in the structure pane. You will be finding and fixing these errors in Step 2 of the tutorial.