I am very new to Java (only been using it for about a week) and I'm working on a store simulator. Basically I just want to get basic things done right now like having a time until closing and a time since opening variable displayed on the screen.

I have made the following functions in my Simulation extends javax.swing.JFrame class :

public void incOpenTime() {
    timeOpen++;
    int hours = timeOpen / 3600;
    int minutes = (timeOpen % 3600) / 60;
    int seconds = (timeOpen % 3600) % 60;
    this.openTime.setText((hours < 10 ? "0" : "") + hours
            + ":" + (minutes < 10 ? "0" : "") + minutes
            + ":" + (seconds < 10 ? "0" : "") + seconds);
    decTimeLeft();
    }

public void decTimeLeft() {
    int remainingTime = 28800 - timeOpen;
    int hours = remainingTime / 3600;
    int minutes = (remainingTime % 3600) / 60;
    int seconds = (remainingTime % 3600) % 60;
    this.timeLeft.setText((hours < 10 ? "0" : "") + hours
            + ":" + (minutes < 10 ? "0" : "") + minutes
            + ":" + (seconds < 10 ? "0" : "") + seconds);

    }

The openTime and timeLeft variables using the setText() method are part of the GUI itself.

In main, I call incOpenTime like so:

while(this.timeOpen < 28800) 
{
    incOpenTime();

}

First off, when I run this it basically just goes through the loop and outputs only the last time to the screen. How would I make it so the times are constantly changing?

Secondly, I would like to delay it slightly...maybe about 1ms per second so the simulation runs slower and other data being output to the screen (later) is more readable. I've tried Thread.sleep(1); in the loop but it doesn't display the numbers as they are changed.

Please help.

Thanks

EDIT:

Here's what I did to get it working. In main:

timer = new Timer();
for(int i=1; i<= 28800; i++)
{
        timer.schedule(new task(), 1*i);

}

Made a new class:

class task extends TimerTask {

    @Override
    public void run() {
        incOpenTime();
        }
}
link|improve this question

1  
No -- you need a javax.swing.Timer (as trashgod suggests -- 1+ to him) not a java.util.Timer. Big difference here, and the util Timer will bite you in the behind if used in a Swing app such as this when you don't expect it. – Hovercraft Full Of Eels Sep 5 '11 at 0:08
feedback

3 Answers

up vote 0 down vote accepted

You need a java.util.Timer

Edit: As this is the accepted answer, it is important to note that the TimerTask should execute its Runnable on the event dispatch thread. The correct variation of this approach is noted in @mKorbel's answer. There's a short example below and a more elaborate one here. A somewhat simpler approach, suggested by @Hovercraft, is seen here.

class Task extends TimerTask {

    @Override
    public void run() {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                incOpenTime();
            }
        });
    }
}
link|improve this answer
Thanks, I made changes and it works now. Refer to original posting to see edits. – BackpackOnHead Sep 4 '11 at 23:39
1  
-1 vote: You should not recommend a java.util.Timer for a situation that calls for a javax.swing.Timer. The util timer can and will eventually break concurrency. – Hovercraft Full Of Eels Sep 5 '11 at 0:10
@mKorbel's answer should be applied when using java.util.Timer in this context. Answer edited. – trashgod Sep 5 '11 at 10:52
feedback

javax.swing.Timer may be a good choice, as "the action event handlers for Timers execute on … the event-dispatching thread." There's an example here.

link|improve this answer
1  
@chickeneaterguy: this is the correct answer. 1+ – Hovercraft Full Of Eels Sep 5 '11 at 0:11
yes with same +1 – mKorbel Sep 5 '11 at 5:20
+1 using Swing timers rather than general-purpose timers for GUI-related tasks. – AVD Sep 5 '11 at 11:40
I'm going to try this out. Thanks! – BackpackOnHead Sep 6 '11 at 21:39
feedback

your output from BackGroung Task or Thread to the GUI isn't correctly posted to the EDT,

you have to wrap any of output to the GUI (from BackGroung Task or Thread) to the

invokeLater()

if method could be Synchronized then

invokeAndWait()

please read more about Concurency in Swing

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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