Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a starting Java developer, learning just from internet tutorials. I am learning full screen GUI applications. I was told yesterday that I shouldn't use AWT in my programs, because it is outdated. I already know about light and heavyweight components, the main problem is the mouse and keyboard listeners. Why is AWT outdated? How to make a program without AWT (adding listeners to JComponents etc) (what kind of Swing things can replace the AWT)?

Thanks in advance!

share|improve this question
I have never heard of listeners other than AWT. Would be nice to know it myself. – LouwHopley Jun 6 '11 at 16:37
1  
@Nideo: Feast your 'ears' on the 20+ listeners in the javax.swing.event package. ;) – Andrew Thompson Jun 6 '11 at 17:15
@Andrew, thanks! :P Is there a reason to rather use swing listeners than AWT listeners? – LouwHopley Jun 6 '11 at 17:34

3 Answers

up vote 12 down vote accepted

You're mis-interpreting the information given to you. You should avoid using Swing components with AWT components. It's OK to use Swing with the AWT listener structure, layout managers, etc. and in fact it's impossible not to.

share|improve this answer
1  
Thanks! I did mis-interpret the info then. Marked as answer. – Hidde Jun 6 '11 at 16:54
just upvote ... +1 – mKorbel Jun 6 '11 at 16:57

There have been some good answers, but I would like to cover a slightly different aspect. Things that Swing provides beyond AWT.

Components

Swing supports styled documents in JEditorPane & JTextPane & to a limited extent using HTML in some other JComponents. AWT does not support styled documents in any component.

AWT provides no tree based structure like JTree, no tabular structure such as JTable, no version of JToolbar.

AWT has no equivalent (that I can find or recall) for JColorChooser & none for the simple utility class - JOptionPane.

Listeners

As mentioned in a comment, see the 20+ extra/alternate listeners in the javax.swing.event package.

Pluggable Look & Feel

Swing components can be set to a particular look & feel at run-time, including a native PLAF.

See the screen shots on the Nested Layout Example for some more samples.

Layouts

In addition to the plethora of AWT layouts, Swing provides:

  1. BoxLayout
  2. GroupLayout
  3. OverlayLayout
  4. ScrollPaneLayout
  5. SpringLayout
  6. ViewportLayout

Other


There is probably a lot more I missed in that brief description, but the bottom line is that Swing is an altogether newer and more enabled GUI toolkit.

Swing both builds on, and relies heavily on, classes in the AWT.

share|improve this answer
.. +1 – mKorbel Jun 6 '11 at 18:13
That was a super answer, +1 for that. I'll keep the old one as my answer though, it was more an answer to the question. Thanks a lot for all the time though, you put into this. – Hidde Jun 6 '11 at 20:32
+1 D'oh, it just occurred to me that one can link images from other answers! – trashgod Jun 6 '11 at 20:39
1  
Seems like you are a big fan of Baba Ramdev (that man in the picture) :-) – nIcE cOw Apr 23 '12 at 6:26
1  
Exactly, he is the so called YOGA GURU :-) – nIcE cOw Apr 23 '12 at 6:55
show 2 more comments

Java's Swing takes ActionListeners, which are part of the AWT package. If you wish to use swing, you must use some form of an AWT ActionListener. That is just the way things are. I don't suggest using Java at all for complex guis, but nor would I say that AWT is outdated, as there is no direct replacement. Thus, just go ahead and use AWT.

As an alternative, you could look into JOGL, but that's more if you are trying to create something game-oriented.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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