Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 874187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:04:02+00:00 2026-05-15T11:04:02+00:00

I wanted to write a timer in java.which will do the following: when program

  • 0

I wanted to write a timer in java.which will do the following:
when program starts,start the timer1 which will stop after 45 mins, at the same time start the second timer, which will stop after 15 mins. at this time the first timer will starts again, and repeat the above loop until the program exits
first timer : 45 min (the time I can use computer)
second timer: 15 min (the pause time)
first timer : 45 min (the time I can use computer)
second timer: 15 min (the pause time)
first timer : 45 min (the time I can use computer)
second timer: 15 min (the pause time)

I dont know how to use the thread and timer (utils,swing) so I tried to use while(true) but the cpu goes up.
here is my current code

static int getMinute(){
    Calendar cal=Calendar.getInstance();
    int minute=cal.getTime().getMinutes();
    return minute;
}

public static Runnable clockf(){
    if (endTime>=60){
        endTime=endTime-60;}
    System.out.println(startTime);
    System.out.println(currentTime);
    System.out.println(endTime);

    if(currentTime==endTime){
        pauseStart=getMinute();
        currentTime=getMinute();
        pauseEnd=pauseStart+15;

        if(currentTime==pauseEnd){
            pauseStart=0;
            pauseEnd=0;
            startTime=getMinute();
            currentTime=getMinute();
            endTime=startTime+45;
        }
    }
    else{
        update();
    }

    return null;

}

private static void update() {
    currentTime=getMinute();
    System.out.println(currentTime);
}

public static void main(String[] args) {
    startTime=getMinute();
    currentTime=getMinute();
    endTime=startTime+45;

    Thread t=new Thread(clockf());
    t.setDaemon(true);
    t.start();
    try {
        Thread.currentThread().sleep(1000);//60000

    } catch (InterruptedException e) {
        System.err.println(e);
    }



    }

but it isnt good. are there any way to make the clockf method run only once / min ?
or any other way to make that timer runs ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T11:04:02+00:00Added an answer on May 15, 2026 at 11:04 am

    Even though I did not fully understand what you’re trying to do
    Timer and TimerTask should do that for you.
    Following code has to improved a bit to be runnable, but hopefully shows the principle:

    long minute = 1000*60;
    
    Timer timer1 = new Timer();
    long delay1 = 45*minute;
    Timer timer2 = new Timer();
    long delay2 = 15*minute;
    TimerTask tt1;
    TimerTask tt2;
    
    ...
    
    tt1 = new TimerTask()
    {
       public void run()
       {
          //do something and:
          timer2.schedule(tt2, delay2);
       }
    };
    
    tt2 = new TimerTask()
    {
       public void run()
       {
          //do something and:
          timer1.schedule(tt1, delay1);
       }
    };
    
    timer1.schedule(tt1, delay1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 523k
  • Answers 523k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Go into the designer, right click on the line that… May 16, 2026 at 9:46 pm
  • Editorial Team
    Editorial Team added an answer Let me give you the scoop on what's going on… May 16, 2026 at 9:46 pm
  • Editorial Team
    Editorial Team added an answer You'll want an autoincrement numeric primary key. For the times… May 16, 2026 at 9:46 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I did find other posts similar to this, but wanted a little extra information
I have an in-house HTTP server written in Java; full source code at my
Lately i decided to take a look at Java so i am still pretty
I seem to have faced this problem many times and I wanted to ask
I have a design problem. I have two data objects which are instances of
I've been reading up on Doug Lea's 'Concurrency Programming in Java' book. As you
Wow, never thought I would ever write anything in DOS. Now that I do,
I'm new to Clojure and have been using Compojure to write a basic web
Assume that i have written a program in C++ without using RTTI and run-time
I created indexing on my tables and then I fire same queries using two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.