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

  • SEARCH
  • Home
  • 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 6077021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:40:26+00:00 2026-05-23T10:40:26+00:00

I have a frame which starts a swingTimer to perform a periodic task. The

  • 0

I have a frame which starts a swingTimer to perform a periodic task. The problem is when I close the frame, the task still continues. I want the swingTimer to stop if the close button is pressed.

I have tried specifying EXIT_ON_CLOSE and DISPOSE_ON_CLOSE but these do not work. Does someone know what I should do?

Thanks

  • 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-23T10:40:26+00:00Added an answer on May 23, 2026 at 10:40 am

    Swing Timer has a stop method. You can always call that if the “frame” (JFrame??) ends via a WindowListener.

    Also, per my tests, the Timer should stop on its own if the EDT stops. For example:

    import java.awt.event.*;
    import javax.swing.*;
    
    public class StopTimer extends JPanel {
       private static final float FONT_SIZE = 32;
       private Timer myTimer;
       private JLabel timerLabel = new JLabel("000");
       private int count = 0;
    
       public StopTimer() {
          timerLabel.setFont(timerLabel.getFont().deriveFont(FONT_SIZE));
          add(timerLabel);
    
          int timerDelay = 1000;
          myTimer = new Timer(timerDelay , new ActionListener() {
             @Override
             public void actionPerformed(ActionEvent e) {
                count++;
                timerLabel.setText(String.format("%03d", count));
                System.out.println("count: " + count);
             }
          });
          myTimer.start();
       }
    
       private static void createAndShowUI() {
          JFrame frame = new JFrame("StopTimer");
          frame.getContentPane().add(new StopTimer());
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.pack();
          frame.setLocationRelativeTo(null);
          frame.setVisible(true);
       }
    
       public static void main(String[] args) {
          java.awt.EventQueue.invokeLater(new Runnable() {
             public void run() {
                createAndShowUI();
             }
          });
       }
    }
    

    If this doesn’t help you, then do what I’ve done: post a small compilable and runnable program that demonstrates your problem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom UITableViewCell which contains several UIButtons. Each button's frame position is
I have a binary file, inside of which has multiple frames. Each frame starts
I have a wx.Frame, in which there is a main wx.Panel with several widgets
I have a data.frame called series_to_plot.df which I created by combining a number of
I have a WPF Window which has a among other controls hosts a Frame.
I have an XBAP WPF application which displays various pages inside of a Frame.
We have some web pages which have two frames, with one frame in the
I have a UIScrollView which I create and size dynamically using... scrollView.contentSize = CGSizeMake(scrollView.frame.size.width
I have a scenario in which I want user to be able to start
I have a UIScrollView which starts with a portrait aspect and which I subsequently

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.