vote up 0 vote down star

I need to compose a fairly simple GUI for a server monitoring process. It will have a few tabs which lead to a log tailing, counts of resources, and a start and top control. Nothing fancy here. Which Java framework, AWT or Swing, makes more sense for something this simple.

flag

52% accept rate

5 Answers

vote up 0 vote down

AWT was the first Java GUI framework, it had a lot of flaws and was abandoned in favor of Swing. The main reason it is still in the JDK is for backwards compatibility and because some classes are re-used by Swing.

The future however (even for the desktop) could be JavaFX.

link|flag
vote up 1 vote down

Swing is your best choice if you're stuck choosing between Swing and AWT.

If you have the flexibility, I would at least consider SWT. It's faster, matches the platform look and feel, and seems to have fewer porting hurdles and regression problems from release to release. There is a small hurdle in setting up your first project (getting the right jars and such), but other than that, it's no more difficult to work in.

link|flag
vote up 1 vote down

if you are planning to move your gui onto multiple platforms, then go with AWT. Otherwise, Swing gives you a much broader set of components to work with.

link|flag
I guess by "multiple platforms" you mean non-desktop platforms. – artificialidiot Feb 12 at 17:02
yes (10 characters) – yx Feb 12 at 17:21
vote up 12 vote down

Swing is the way to go. It's a cleaner programming interface, and looks better.

link|flag
It's also lighter on resources because of how it was designed. – Ryan Graham Feb 12 at 17:03
vote up 2 vote down

Use Swing or SWT, since AWT has no tabs built in.

Starting with Java 6 Update 10, Swing got an entirely new look and feel, the 'Nimbus Look and Feel'. It looks great and is really fast because it uses vector graphics.

link|flag
Ugh, ANOTHER new default look for Swing? Granted, the 1.4 (purple) look was ugly, but the 1.5 look wasn't that bad, nor was the 6 look. – R. Bemrose Feb 12 at 17:19

Your Answer

Get an OpenID
or

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