I've used this 'LoadingCircle' project in .net applications. Is there an equivalent component that provides a loading circle for Swing? Are there any other loading indicators available for Swing.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

SwingLabs has a JXBusyLabel - and there's a WebStart demo available.

link|improve this answer
feedback

An implementation of an infinite (circular) progress bar in Swing is available here: http://www.jroller.com/gfx/date/20050215

Swing provides standard rectangular progress bars as well: http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html

link|improve this answer
The first link is what I was after but it doesn't seem to have any license information. :-( – Luke Quinane Jul 9 '09 at 1:04
Although I'm pretty sure that the author provided the code for free as a public service, you can contact the author at: romain.guy@mac.com – anio Jul 9 '09 at 1:27
feedback

There is also:

link|improve this answer
feedback

Although this post is old, just in case anyone stubbles on this post, Java7 now has support for an animating spinner by using JLayer class:

http://docs.oracle.com/javase/tutorial/uiswing/misc/jlayer.html#animating

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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