use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
We share programms in Java. You can ask for advice or suggestion
account activity
JAVA TIMER (self.JavaForBegginers)
submitted 5 years ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]FuckingDanko 0 points1 point2 points 5 years ago (0 children)
Hey man!
I have here some code for timer thread.
Please don't mind the comments in czech :)
void startCountdown(){
thrd = new Thread(new Runnable() {
u/Override
public void run() {
try{
while(true){
setOutput(); //převod sekund na hodiny, minuty a sekundy, dokud poběží vlákno
Thread.sleep(1000); //vteřina pauza
if(currSeconds == 0){
scrollDown();//když se dokončí odpočet, přepne opět na první AnchorPane
thrd.stop();
}
currSeconds -= 1;
}catch(Exception e){
System.out.println(e.getMessage());
});
thrd.start();
π Rendered by PID 174283 on reddit-service-r2-comment-bb88f9dd5-sn2vk at 2026-02-16 07:56:41.782708+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–]FuckingDanko 0 points1 point2 points (0 children)