JLabel (or any other JComponents), when you call the setText()
method, its value changed but the look in the UI need to be updated later. (by EDT?)
And if you blocked EDT, the whole frame freezes. So my problem is, I'm happy with the 'freeze' effect prevents any more actions dispatch. However I want my labels and other outputting components keep updating. Therefore I am looking for a method that update the look of a component manually. In java API, I found updateUI()
which seems not useful.
If you know any method that can do like
label.setText("thanks!");
label.update();
Please tell me. I will be very grateful.
Don't freeze the Swing event thread, period. When you do, it isn't able to perform any of its tasks such as painting and user interaction, and if it doesn't paint, it doesn't update, no matter what you try. Simple as that.