Issue
I am used to Eclipse, in that when I save a file, it automatically generates the class file, so that when I run my application the change is already there.
Netbeans seems to be different unfortunately. Everytime I do a little change (and want to see that change), I have to go up to Run-->Clean And Build Project, then find my Java file and select 'Run File'.
Is there any way in Netbeans to speed up this process?
Solution
First: you don't need "Clean and build project" each time.
Just use "Run project" (or "Run Main Project") and NetBeans will take care of compiling whatever needs compiling.
But if you do want the "Compile on Save" feature you can enable that in the project's properties under the "Build -> Compiling" options:
Answered By - a_horse_with_no_name