Skip to content
Advertisement

How do I implement countdown in the GUI

I wrote a piece of code in Java about a countdown function in GUI, but I found that when I wanted to use timers and threads, time could not be refreshed in the GUI. Sleep () {I know this will be a function in the main thread, but later I ran it. It is not, and I don’t understand}. So how do I implement this countdown to refresh constantly in the GUI? The code is as follows,I only wrote a function to display the system time:

JavaScript

I hope to see a function of continuous countdown in the GUI, hope mogul can solve my problems ,sincerely say thanks for you!

Advertisement

Answer

Oracle has a helpful tutorial, Creating a GUI With Swing. Skip the Learning Swing with the NetBeans IDE section. Pay particular attention to the How to Use Swing Timers section.

I added a Swing Timer to your MainGUI class. The code in the actionPerformed method is executed every 200 milliseconds, which should be accurate enough for a clock that displays seconds.

Here’s the complete runnable code. I made the additional classes inner classes so I could post this code as one block.

JavaScript
Advertisement