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

Can some one please explain me what is the difference between swing and awt?

Are there any cases where awt is more useful/ advised to use then swing or vice-versa?

Thanks in advance.

share|improve this question

7 Answers

up vote 61 down vote accepted

Awt is a Java interface to native system GUI code present in your OS. It will not work the same on every system, although it tries.

Swing is a more-or-less pure-Java GUI. Using awt it creates an operating system window, and then it paints pictures of buttons, labels, text, checkboxes, etc., into that window and responds to all of your mouse-clicks, key entries, etc., deciding for itself what to do instead of letting the operating system handle it. Thus Swing is 100% portable and the same across platforms. (Although it is skinnable and has a "pluggable look and feel" that can make it look more or less like the native windows and widgets would look.)

These are vastly different approaches to GUI toolkits and have a lot of consequences. A full answer to your question would try to explore all of those. :) Here are a couple:

Awt is a cross-platform interface and so even though it is using the underlying OS or native GUI toolkit for its functionality, it doesn't provide access to everything that those toolkits can do. Advanced or newer widgets that might exist on one platform might not be supported. Features of widgets that aren't the same on every platform might not be supported, or worse, they might work different on each platform. People used to invest lots of effort, including trying to make calls into native code from Java, to get their Awt applications to work consistently across platforms.

Because Awt uses native GUI widgets, your OS knows about them and handles putting them in front of each other, etc. Whereas with Swing your widgets are just meaningless pixels within a window; Swing handles deciding how your widgets lay out and stack. Mixing the two is highly unsupported and can lead to ridiculous results, such as native buttons that obscure everything else in the dialog box in which they reside because everything else was created with Swing.

Because Swing tries to do everything possible in Java other than the very raw graphics routines provided by a native GUI window, it used to incur quite a performance penalty over Awt. This made Swing unfortunately slow to catch on. However, this has shrunk dramatically over the last several years, due to more optimized JVMs, faster machines, and (I presume) optimization of the Swing internals. Today a Swing application can run fast enough to be serviceable or even zippy, and almost indistinguishable from an application using native widgets. Some will say it took far too long to get to this point, but most will say that it is well worth it.

Finally, you might also want to check out SWT (the GUI toolkit used for Eclipse, and an alternative to both Awt and Swing), which somewhat of a return to the Awt idea of accessing native Widgets through Java.

share|improve this answer
:) .. please check my edited question – Samiksha Jan 3 '09 at 9:54
Um... having done some pretty extensive Swing across multiple platforms, I can tell you that it very much is not the same across platforms. Similar? Sure. Same? No way. – cletus Jan 3 '09 at 9:55
thanks a lot skiphoppy... – Samiksha Jan 3 '09 at 10:12
The heavyweight/leightweight problems will disappear with Java 6 update 12 (see java.dzone.com/news/a-farewell-heavyweightlightwei). – Dan Dyer Jan 3 '09 at 11:46
Wow. I can't believe they can fix it, and I still can't believe mixing lightweight and heavyweight components would ever be desirable. But it's incredible that they can fix it. – skiphoppy Jan 3 '09 at 14:47
show 1 more comment

The base difference that which already everyone mentioned is that One is heavy weight and other is light weight. Let me explain, bacially what the term heavy weight means is that when you are using the awt components the native code used for getting the view component is generated by the Operating System, thats why it the look and feel changes from OS to OS. Where as in swing components its the responsibility of JVM to generate the view for the components. Another statement which i saw is that swing is MVC based and awt is not.

share|improve this answer
3  
actually Swing uses a Model-Delegate approach, which is derived from the MVC approach, where in the View and Controller are combined for a Delegate structure – Purushottam Feb 5 '12 at 7:18
+1 for more simpler explanation – sewdil Jun 2 '12 at 18:56

Swing vs AWT. Basically AWT came first and is a set of heavyweight UI components (meaning they are wrappers for operating system objects) whereas Swing built on top of AWT with a richer set of lightweight components.

Any serious Java UI work is done in Swing not AWT, which was primarily used for applets.

share|improve this answer
are there any cases where awt is more useful/ advised to use then swing? – Samiksha Jan 3 '09 at 9:50
Samiksha, make that another question instead of trying to have a discussion thread in these comments. :) – skiphoppy Jan 3 '09 at 9:52
It used to be relevant... 10 years ago. – bart Jan 3 '09 at 17:14
"Any serious Java UI work is done in Swing not AWT" - That's wrong, SWT isn't based on Swing and.. Don't you consider SWT "serious" enough? – Pacerier Apr 1 '12 at 23:16

As far as when AWT may be more useful than Swing -

  • you may be targeting an older JVM or platform that doesn't support Swing. This used to really come into play if you were building Applets - you wanted to target the lowest common denominator so people wouldn't have to install a newer Java plugin. I'm not sure what the current most widely installed version of the Java plugin is - this may be different today.
  • some people prefer the native look of AWT over Swing's 'not quite there' platform skins. (There are better 3rd party native looking skins than Swing's implementations BTW) Lots of people preferred using AWT's FileDialog over Swing's FileChooser because it gave the platform file dialog most people were used to rather than the 'weird' custom Swing one.
share|improve this answer
  • swing component provide much flexible user interface because it follow model view controller(mvc).
  • awt is not mvc based.
  • swing works faster.
  • awt does not work faster.
  • swing componets are light weight.
  • awt componentsare heavy weight.
  • swing occupies less memory space.
  • awt occupies more memory space.
  • swing component is platform independent.
  • awt is platform dependent.
  • swing require javax.swing package.
  • awt require javax.awt package.
share|improve this answer

Swing:

  1. Swing is also called java foundation classes.
  2. Swing component are platform independent.
  3. Swing components are light weight component because swing are sit on the top of awt.

AWT:

  1. AWT is called the abstract window tool.
  2. AWT component are platform dependent.
  3. AWT components are light weight component.
share|improve this answer

AWT 1 . AWT occupies more memory space 2 . AWT is platform dependent 3 . AWT require javax.awt package

swings 1 . Swing occupies less memory space 2 . Swing component is platform independent 3 . Swing requires javax.swing package

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.