|
Java Progress Bar Not Showing Progress
I'm writing a java program that uses a JProgressBar. My program performs inserts on a database and the progress bar keeps track of this by showing a percentage of the task being completed. My problem is that when I run "long" tasks, say a couple minutes, the progress-bar doesn't show any progress. The inserts are performed on the database, but no indication of progress is made via the progress-bar. However, for shorter tasks, the progress-bar shows progress just fine.
Any ideas what causes this?
|