What is the ways updating jProgressBar?
问题 I need to update jProgressBar in method which read from file and do some operations. I tried to update progress bar by this method: public void progressUpdate(int percent) { System.out.println("Update = "+percent); synchronized (jMainProgressBar) { jMainProgressBar.setValue(percent); } SwingUtilities.invokeLater( new Runnable() { public void run() { jMainProgressBar.updateUI(); jMainProgressBar.repaint(); } }); } how ever this works only then when method is done. But if i continuously