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)?
|
|
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. |
||
|
|
|
|
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 ... |
||
|
|
|
Swing is heavily used in business specific (vertical)/internal application development. |
||
|
|
|
|
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. |
||
|
|
Hmmmm... how about NetBeans? You know, the IDE? It uses Swing. |
||||||
|
|
|
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. |
||||||||
|
|
|
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. |
||
|
|
|
|
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.
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. |
||||||
|
|
|
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. |
||
|
|
|
|
IIRC jEdit is also a Swing app. Quite a popular text editor. |
||
|
|
|
|
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. |
||
|
|
|
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. |
||||||||||
|
|
|
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... |
||
|
|
|
|
You should probably be looking at JavaFX for future work. As the FAQ states,
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. |
||
|
|
