vote up 3 vote down star

Are Swing applications really used nowadays? I don't find a place where they are used. Is it okay to skip the AWT and Swing package (I learned a bit of the basics though)?

flag

14 Answers

vote up 6 vote down check

If you are writing for the web exclusively, you can probably skip Swing, but otherwise you're absolutely going to run into it. I've never worked on a non-trivial Java app without a Swing GUI.

Also, Swing is one of the better APIs to use. If you use most others, you are going to find them more difficult to use and/or platform incompatible. (If anyone reading this is aware of exceptions to this, please leave comments, I haven't looked for a while and am kind of curious if anything better has become available)

Other JVM languages like JRuby and Jython are often used because of their access to Swing.

link|flag
vote up 5 vote down

You may checkout Swing Sightings.

This website is hosted by SUN and it is dedicated to sw projects that use Swing. There are a lot of projects using Swing ...

http://java.sun.com/products/jfc/tsc/sightings/

link|flag
While I don't doubt Swing has it's place even today (and at the same time being an ugly and complex beast to get started with), the last sightings issue is from 2005 - so it cannot really prove that Swing is used today ;) – Henning Aug 28 at 15:34
vote up 4 vote down

Swing is heavily used in business specific (vertical)/internal application development.

link|flag
vote up 3 vote down

You should certainly write Swing for desktop Java, only using AWT to the degree that Swing demands it.

I'm sure people can come up with examples of very good Swing apps besides SQL Squirrel and IntelliJ.

I think that RIA technologies like Flex, Silverlight, etc. are ascendant because the web and services are taking mindshare from desktops. It's not just Swing that's losing out.

link|flag
"certainly", perhaps not, there is at least the SWT alternative (which I didn't learn). – PhiLho Jan 2 '09 at 17:13
I wouldn't consider SWT as a viable alternative, but that's my personal choice. – duffymo Jan 2 '09 at 17:30
vote up 3 vote down

Hmmmm... how about NetBeans? You know, the IDE? It uses Swing.

link|flag
ya i know and also eclipse – arshad Jan 2 '09 at 16:51
While Eclipse is great IDE, it doesn't use Swing, but SWT. – Peter Štibraný Jan 2 '09 at 17:03
oh thanks for the info – arshad Jan 3 '09 at 9:54
vote up 3 vote down

Swing applications are used in most cases where a Java app runs on the desktop. Sometimes you don't even know - for example, LimeWire is a Java Swing application.

When learning Swing, you'll find that you will come to know those parts of AWT that are still important, such as Event, LayoutManager, Graphics, Font, Color, etc.

link|flag
azureus was developed in swing ? wow .. thanks for the info pal :) – arshad Jan 2 '09 at 16:51
I believe that Azureus uses SWT toolkit (from of Eclipse), not Swing. – Peter Štibraný Jan 2 '09 at 17:02
Yes, Azureus is an Eclipse RCP, i.e. it uses SWT. – JesperE Jan 4 '09 at 23:02
OK, edited my answer to fix that. Sorry for the mistake. – David Jan 5 '09 at 16:15
vote up 2 vote down

Check out Filthy Rich Clients. It explains some of the history of AWT and Swing. Swing, being a lightweight alternative (successor) to most of the AWT classes.

link|flag
vote up 2 vote down

Skip AWT and Swing? To jump where? SWT? Web-based development?

In the broader sense, I have a number of Java applications, although I am not too sure if they use Swing or SWT.

  • Lot of database tools like SQuirreL SQL Client are written in Java. I think SQuirrel uses stuff from Netbean, which is, of course, Swing based.
  • yEd is written in Java, probably Swing.
  • A number of P2P softwares are written in Java, including Frostwire (I see no trace of SWT there, but I can just miss it).

And this list is far from exhaustive!

Lol! I forgot to mention the software suite made by the company I work for! It is quite specialized, used by mobile phone companies to monitor health of their network nodes (superficially looks like a spreadsheet). Totally Swing based.

link|flag
Open Office is not written in Java (it's slow for other reasons ;)). – Dan Dyer Jan 3 '09 at 21:29
Ah? Somebody already told me, but before posting, I checked and found lot of jar files (in program/classes). It has lot of DLL and exe files too, indeed. Confusing, at least. – PhiLho Jan 4 '09 at 0:52
OpenOffice is written in C++ and supports Java plug-ins somehow. – Rastislav Komara Jan 4 '09 at 10:20
vote up 1 vote down

Whenever you want to write a desktop GUI app for non-Windows OS, you use Swing as the only sane and guaranteed cross-platform GUI framework.

Besides, Swing has a very good design. I recommend to learn it anyways, to make yourself a better programmer.

link|flag
vote up 1 vote down

IIRC jEdit is also a Swing app. Quite a popular text editor.

link|flag
vote up 0 vote down

AWT I never actually learnt in full as swing is just a more sophisticated version, knowing swing is very important if you have any intention of ever making a Java GUI application.

link|flag
will it be ever used for enterprise application development ? – arshad Jan 2 '09 at 16:45
vote up 0 vote down

There is no universal question to whether it is ok to skip something or not. It's a matter of priorities. While Swing has a lot to teach you (and it is too heavily infused with AWT), if you're never going to be writing GUIs you may be better off investing in something else.

Swing, while ugly as hell, is still used in many places. A quick search on "java swing" in Indeed or dice would reveal many jobs and industries that require it.

link|flag
1  
Swing, while not great in many ways, is far from "ugly as hell". It has many nice concepts, and is quite good to use after a bit of experience is gained. And with recent font improvements makes it quite possible to write a GUI which is indistinguishable from a native app. – Software Monkey Jan 2 '09 at 19:47
Indistinguishable, except that it resizes properly, that is. – Software Monkey Jan 2 '09 at 19:48
i find that the file choosers are very slow in swing - i hate them – arshad Jan 3 '09 at 9:55
You can write something pretty in every language, but in my experience the vast majority of applications written with similar effort in Swing compared to other APIs tend to be clunkier, less aesthetic, and less robust. – Uri Jan 3 '09 at 23:15
vote up 0 vote down

Are you skipping it for an exam/interview? Besides really good apps like IntelliJ IDEA and NetBeans, there are lots of Swing like frameworks [SWT (Eclipse), GWT etc.] which you can learn faster with Swing knowledge...

link|flag
vote up 0 vote down

You should probably be looking at JavaFX for future work. As the FAQ states,

Sun is not replacing Swing with JavaFX Script. Instead, JavaFX Script makes Swing easier to use.

Using/learning it will give you a very good understanding of the important Swing concepts, and how they fit in with "the future". I haven't used JavaFX yet, but heard very good things about it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.