View progress bar in netbeans

How to view the progress bar used by netbean v6.8 to execute my java application when I press the launcher button (right green arrow)? I am looking for something like:

java -cp build / class Main

I have been trying to make the switch to java IDE developmentement since 15 years old by writing c and C ++ with vi. I start with netbean as it seems to have better vi key bindings.

+1
netbeans
source share
2 answers

I realized what I was looking for. Tools-> options → Ant tab, where it is indicated that the level of detail level is set for debugging. Then run the application and find "Complete build sequence: [run,]", a few lines down, this is the execute statement, in ant exec format.

+3
source share

If you want to debug your application, you need to select the option "Debug", and not "Run". In the debug option you can set breakpoints and execute the program step by step.

0
source share

All Articles