tags:

views:

82

answers:

3

i have designed an application using java swing, how to improve the look and feel and User interface?

+3  A: 

Perhaps change the look and feel to something more "native": http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html

Noel M
+1  A: 

While the question is very vague....I'll provide an obvious quick tip.

Make sure to handle events and/or heavy processing on a background thread. SwingWorker is now included in the Java 6 JRE/JDK

SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {


            @Override
            protected Void doInBackground() throws Exception {
            //some task

                return null;
            }

            @Override
            protected void done() {
           //when done
           }


        };

        threadPool.submit(worker);
Eric W
+5  A: 

It depends upon your objective.

Riduidel