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

I want to write a small application to get more familiar with Java desktop GUI application development than I have much chance to get at work, where the Java work I've done has been limited to web servlets. (Nothing really wrong with that, but nothing wrong with wanting to expand one's knowledge base either, right?)

I have installed a full Java development environment centered around Eclipse on my home PC. There's nothing really special about Eclipse in this regard per se, except it's what's used at work for Java development, and playing with it at home gives me a chance to get more familiar with it in an environment where small mistakes matter less.

So, what I'm looking for is input on which desktop GUI framework(s) are actually in common use in production code today. Not "which would you choose if you were starting something brand new today", "which is the best one" (for some value of best) or "which is the state of the art of Java GUI frameworks". While I have no plans of switching jobs, if I'm going to invest the time to learn a framework, I might as well learn one that will improve my marketability.

share|improve this question

closed as not constructive by George Stocker Jul 30 '12 at 15:15

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 6 down vote accepted
  1. JFC/Swing is the most widely used Desktop GUI Framework by far, mainly because it is the Standard and included in the JDK.

  2. SWT ( Standard Widget Toolkit ) is what is used by Eclipse, it was designed to be an improved alternative to Swing, this is questionable. There are however some high profile applications that use it.

  3. GWT ( Google Web Toolkit ) is a Swing-like Event Driven framework for creating Web Applications without having to write any Javascript or HTML and in the most basic cases no CSS. In practice you need to know your way around CSS to make anything reasonably good looking. It has an awesome development environment and custom developer plugins for all the browsers. Very rapid developement.

  4. There are other Web GUI frameworks that have a following, JSF ( Java Server Faces ) is what is pushed as a Standard in the Java community, I choose to do everything in GWT.

  5. There is Qt, which has some Java bindings, but if you are going to leave the confines of Java completely, then there are much better languages to deal with Qt.

share|improve this answer

By GUI you mean Web GUI or Desktop ?

If you meant Web I would point you to

Vaadin - Swing like Framework but way more good looking and it abstracts a lot of the weblike part of web developing like server-client messaging and ajax, it's very nice.

GWT - it's from google and creates GUI in java then translates it into super tunned JS, it's fast and reliable but you need to make it look good because it doens't by default and handle the messaging between sides. BTW Vaadin uses it...

and maybe some JSF(with Rich Faces or Icefaces) just to get to know it... but I wouldn't use it today anymore for desktop-like-web-apps.

If you are talking about non-web

that's Swing... I never used another option that worked as well as it does with java.

share|improve this answer
I guess I didn't even consider web UIs "GUIs" per se, although I suppose technically they could well be. Yes, I meant desktop GUIs. Clarified that in the original post. – Michael Kjörling Sep 3 '11 at 17:16

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