i have a desktop GUI in swing , i want to show status of user storage used in the GUI, currently i am using JProgressBar, which is not much attractive, It seems like a simple progress bar. Please suggest some attractive way to do.
Asked
Active
Viewed 1,404 times
1
-
See [this question](http://stackoverflow.com/questions/1632930/java-jprogressbar), as it may have an answer to your problem. – Miki May 30 '11 at 15:19
-
Maybe have a look at http://www.jfree.org/jfreechart/ – keuleJ May 30 '11 at 15:26
-
Just click on the JFreeChart [Memory Usage](http://www.jfree.org/jfreechart/jfreechart-1.0.13-demo.jnlp) tab. – trashgod May 30 '11 at 15:29
-
@Sorrow, not sure an indeterminate jprogress bar is what the OP is looking for. – Codemwnci May 30 '11 at 15:31
-
are you tried to change Look & Feel - http://stackoverflow.com/questions/3954616/look-and-feel-in-java – mKorbel May 30 '11 at 16:38
-
1I'm not really sure what the OP wants as "some attractive way" is subjective to the extreme. Perhaps you should post a picture to indicate the desired goal? – Hovercraft Full Of Eels May 30 '11 at 16:41
1 Answers
2
If you are looking for more attractive design. I could suggest you a couple of things:
1-Have a look at javaFX progress bars , you might find something interesting http://download.oracle.com/javafx/1.3/tutorials/UIControls/progress.html
2-If you use the standar progress bar from the java tutorial maybe you could try to edit it yourself. Have a look at this link
Example of self customization:
UIManager.put("ProgressBar.background",Color.BLUE);

javing
- 12,307
- 35
- 138
- 211
-
1Thanks for your help, just one thing, i use JavaFX with swing components. / – Asghar Jun 01 '11 at 07:55
-
You're welcome. Here have a look at this: http://blogs.oracle.com/javafx/entry/how_to_use_javafx_in – javing Jun 01 '11 at 08:31