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 254191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:49:33+00:00 2026-05-11T21:49:33+00:00

I have a swing application which stores a list of objects. When the users

  • 0

I have a swing application which stores a list of objects. When the users clicks a button,

I want to perform two operations on each object in the list, and then once that is complete, graph the results in a JPanel. I’ve been trying SwingWorker, Callable & Runnable to do the processing, but no matter what I do, while processing the list (which can take up to a few minutes, as it is IO bound), the GUI is locked up.

I have a feeling it’s probably the way I’m calling the threads or something, or could it be to do with the graphing function? That isn’t threaded as it is very quick.

I have to do the two processing stages in order too, so what is the best way to ensure the second one has waited on the first? I’ve used join(), and then

while(x.isAlive())  
{  
        Thread.sleep(1000);  
}

to try and ensure this, but I’m worried this could be the cause of my problem too.

I’ve been looking everywhere for some pointers, but since I can’t find any I’m sure I’m doing something stupid here.

  • 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-11T21:49:33+00:00Added an answer on May 11, 2026 at 9:49 pm

    The problem is, your long running task is blocking the Thread that keeps the GUI responsive.

    What you will need to do is put the long running task on another thread.

    Some common ways of doing this are using Timers or a SwingWorker.

    The Java tutorials have lots of information regarding these things in their lesson in concurrency.

    To make sure the first task finishes before the second, just put them both on the same thread. That way you won’t have to worry about keeping two different threads timed correctly.

    Here is a sample implementation of a SwingWorkerFor your case:

    public class YourTaskSwingWorkerSwingWorker extends SwingWorker<List<Object>, Void> {
        private List<Object> list
        public YourClassSwingWorker(List<Object> theOriginalList){
            list = theOriginalList;
        }
    
        @Override
        public List<Object> doInBackground() {
            // Do the first opperation on the list
            // Do the second opperation on the list
    
            return list;
        }
    
        @Override
        public void done() {
            // Update the GUI with the updated list.
        }
    }
    

    To use this code, when the event to modify the list is fired, create a new SwingWorker and tell it to start.

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

Sidebar

Ask A Question

Stats

  • Questions 200k
  • Answers 200k
  • 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 There is a HTML parser in the Python standard library,… May 12, 2026 at 7:55 pm
  • Editorial Team
    Editorial Team added an answer These are called Variadic functions. Wikipedia lists example code for… May 12, 2026 at 7:55 pm
  • Editorial Team
    Editorial Team added an answer Just get the Target and check whether it's not null:… May 12, 2026 at 7:55 pm

Related Questions

I've got an application here that I wrote many years ago that consists of
I am using text-editor to store xml files. I know how to read xml
I have a swing application that includes radio buttons on a form. I have
We have a desktop client application developed in Swing. This application interacts with backend

Trending Tags

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

Top Members

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.