Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

Want to improve this question? Update the question so it can be answered with facts and citations by editing this post .

Closed 2 years ago .

I am planning on making a Java Swing application and was wondering if Swing is still used or if it has been replaced with something else.

Thanks in advance!

Hi @Mark . Swing is not wo spread but still in use, but maybe you can choose something more update for your application, like Griffon or JavaFX . Jonatas Emidio Dec 14, 2018 at 21:45
  • Speed: use of native peers speeds component performance.
  • Look and Feel: AWT components more closely reflect the look and feel of the OS they run on.
  • Cons:

  • Portability: use of native peers creates platform specific limitations. Some components may not function at all on some platforms.
  • Third Party Development: the majority of component makers, including Borland and Sun, base new component development on Swing components. There is a much smaller set of AWT components available, thus placing the burden on the programmer to create his or her own AWT-based components.
  • Features: AWT components do not support features like icons and tool-tips.
  • Portability: Pure Java design provides for fewer platform specific limitations.
  • Behavior: Pure Java design allows for a greater range of behavior for Swing components since they are not limited by the native peers that AWT uses.
  • Features: Swing supports a wider range of features like icons and pop-up tool-tips for components.
  • Vendor Support: Swing development is more active. Sun puts much more energy into making Swing robust.
  • Look and Feel: The pluggable look and feel lets you design a single set of GUI components that can automatically have the look and feel of any OS platform (Microsoft Windows, Solaris, Macintosh, etc.). It also makes it easier to make global changes to your Java programs that provide greater accessibility (like picking a hi-contrast color scheme or changing all the fonts in all dialogs, etc.).
  • Cons:

  • Performance: Swing components are generally slower and buggier than AWT, due to both the fact that they are pure Java and to video issues on various platforms. Since Swing components handle their own painting (rather than using native API's like DirectX on Windows) you may run into graphical glitches.
  • Look and Feel: Even when Swing components are set to use the look and feel of the OS they are run on, they may not look like their native counterparts.
  • "Applet Portability: most Web browsers support AWT classes so AWT applets can run without the Java plugin." This is patently false. Paul Fisher Jun 8, 2010 at 2:06 I wouldn't recommend AWT, it gets very little love these days (other than the bits that are needed for Swing). Better to use SWT if you want to go down the native path. CurtainDog Jun 8, 2010 at 3:54 "Most Web browsers do not include the Swing classes, so the Java plugin must be used." — What? The Swing classes are part of the JRE, not the browser. I don't recall this being a problem in 2003. detly Jun 8, 2010 at 5:53 “they may not look like their native counterparts” – that one made me giggle. At least on Windows I have yet to see a single control (apart from JLabel maybe) that looks and feels like its native counterpart with the “native” LAF :-) Joey Jun 19, 2010 at 10:29

    Swing is still there and well supported.

    Most of the reasons why people hated swing when it first came out are no longer valid simply because of Moores Law, along with improved JVMs. Swing apps no loger feel jerky and unrepsonsive and an accumulation of minor improvements result in a more professional looking GUI.

    Its also worth looking at the "groovy/swing" combination for rapid development and prototyping.

    Aggree that the docs are lacking somewhat, but, IDE support is pretty good, and, googling usually gets you some decent usage examples. James Anderson Jun 8, 2010 at 5:52 The swing docs are generally pretty good. The javadocs have some pretty In-depth examples for the more complicated aspects. I realize they aren't up to par with other systems that have active demos of each control type on a huge web page, but for implementation what you need to know is there. Groovy/SwingBuilder is amazing but actually is virtually undocumented, I've had to sift through vast piles of garbage to find extensive lists of properties or that some constructs even existed! Bill K Jan 19, 2017 at 23:23

    We still use it. Not everything is a web app, so far there have been some tentative replacements (such as SWT, which eclipse is written in)
    SWT has a native layer that wraps the underlying calls to the native windowing layer. It only works for a limited set of platforms and of course requires some third party shared libraries. I would venture to say that there are far fewer SWT apps than Swing apps.

    Yes, it still is in use. The library is still part of the JRE, and will probably be that way for the future. There are other options though. For instance, you may want to look at JavaFX if you need a rich UI; or using SWT in your application. Maybe you want some kind of 3D effects, and you need to look into a 3D engine like jpct or the jmonkeyengine. Java has progressed somewhat since the software Swing world.

    Eclipse RCP uses Eclipse's own SWT, which means you need the native SWT libraries. You can also build on the NetBeans Platform, which is built on Swing: platform.netbeans.org Jesper Jun 8, 2010 at 11:14 No, JavaFX can be used for Desktop Applications, I don't think you can use it for web development. Unterbelichtet Jan 11, 2021 at 9:59

    You can still use Java Swing, though I'd recommend using JavaFX. Designing UIs is easier as the SceneBuilder helps you do just that. It is also newer, so longer support and development. The advantage of Swing is that it has been out for quite a long time, so you'll find more tutorials and help for Swing, but JavaFX is catching up. If you'd like to learn JavaFX, I recommend following the tutorial series by thenewboston on YouTube.