Difference Between Java Swing and Netbeans Swing

I want to develop a simple desktop application that connects to Java DB using Java Swing to design the interface.
I am new to Swing, so I tried some tutorials online and came across them Netbeans platform Swing components.

  • What is the difference between Java Swing architecture and Swee Netbeans components?
  • Which one is suitable for developing interfaces for Java desktop applications?
+4
source share
1 answer

From NetBeans Platform :

The NetBeans platform is a common platform for Swing applications. It provides “plumbing”, before which each developer must write himself down - saving state, connecting actions to menu items, toolbar elements and keyboard shortcuts; window management, etc.

This is an API built with Swing, which is supposed to provide some additional “built-in” functions. Since you need to know Swing in order to be able to use it. I suggest you focus on Swing for now.

+4
source

All Articles