Reputation: 37
I have a problem with NetBeans that when I click on New Project I find only C/C++ category and no Java category:
I already have JDK installed in my computer and among the paths in "System variables". I can't find Java in NetBeans > Tools > Plugins > Installed either.
Upvotes: 0
Views: 1388
Reputation: 17383
You probably have the necessary Java plugins installed, but they are not yet activated.
If you select Tools > Plugins > Installed, does the entry for Java SE look like this?...
If the Activated icon for Java SE is gray then you need to:
After that the Active icon should be a white check mark with a green background:
You can then use the project wizard for basic Java projects. To create a simple "Hello world!" application select File > New Project... > Java with Ant > Java Application.
Notes:
Upvotes: 1