Search code examples
netbeansnetbeans-8netbeans-plugins

NetBeans 8.0.2 missing Java Desktop Application


I recently installed latest version of NetBeans and when I tried to make a new project type "Java Desktop Application" it won't appear in Java category. Please help? I've installed this plugin:

  • Java Swing Framework Library
  • JDK Project for Netbeans

Even I installed all of java plugins. But no luck!


Solution

  • By Java Desktop Application you may be referring the "Swing Application Framework" and that was halted by Sun Microsystems before Java 7 around year 2009 end.

    For developing Desktop Applications using Java in NetBeans you have multiple options as follows:

    1. Using Matisse UI Builder The Matisse UI builder is available in NetBeans and you can create JFrame and JDialog classes in your application which can be used as your UI in any Java application. This approach needs a lot of boilerplate code to be written for creating windows, menus and dialog boxes. The next option is better if you want a professional cross platform Java Desktop Application
    2. Using NetBeans Platform as base of your application NetBeans IDE is built on the top of NetBeans Platform and you can also use the NetBeans Platform to build your own Desktop application with many conventional features out of the box coming from the NetBeans Platform. The NetBeans IDE comes with NetBeans Modules project types where you can choose the "NetBeans Platform Applciation: project type to create a desktop application. There are lot of tutorials and help available for the NetBeans platform on NetBeans users list and platform mailing list.