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

I am trying to call a function initialStep() of MainApp class from ProcessStatements class. When the function initialStep() is called, i want to show progress bar to the user till the initialStep() function completes the execution.

How can i do this using Java Swing? Please someone help me out. Thanks in advance :)

share|improve this question
3  
Don't forget to review previous questions and Accept any accept-worthy answers. – user166390 Jun 9 '11 at 18:41
1  
I agree with pst. You have 5 questions with answers and none of them have been accepted. If you want to motivate others better to help you, you'd best go back through these questions and accept answers in at least some of them. – Hovercraft Full Of Eels Jun 9 '11 at 18:58

2 Answers

up vote 6 down vote accepted

I recommend using a SwingWorker for the task.

The main issue is that the Swing stuff needs to be done on the EDT (Event Dispatch Thread). The SwingWorker takes care of all that. The progress bar can be a simple JProgressBar in a window or whatever is desired.

Happy coding.

share|improve this answer
+1 for mentioning that Swing components must be updated on the EDT to ensure visibility. – mre Jun 9 '11 at 19:05

J2SE Documentation report the same issue as example of using SwingWorker class:
SwingWorker

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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