Tagged Questions

When a Swing program needs to execute a long-running task, it usually uses one of the worker threads, also known as the background threads. Each task running on a worker thread is represented by an instance of javax.swing.SwingWorker. SwingWorker itself is an abstract class; you must define a subclass in order to create a SwingWorker object; anonymous inner classes are often useful for creating very simple SwingWorker objects.

learn more… | top users | synonyms (1)

14
votes
1answer
11k views

How do I use SwingWorker in Java?

Related to my previous question: Call repaint from another class in Java?. I'm new to Java, and I've had a look at some tutorials on SwingWorker, but I'm unsure how to implement it with the ...
12
votes
6answers
3k views

How should I handle exceptions when using SwingWorker?

I use SwingWorker in Java 6 to avoid running long-running code on the event dispatch thread. If the call to get() in my done() method returns an exception, what is an appropriate way of handling the ...
7
votes
4answers
79 views

Why is SwingWorker#setProgress limited to [0, 100]?

SwingWorker#setProgress throws an IllegalArgumentException if the argument isn't from 0 to 100. I thought the main purpose of the setProgress method was to update a JProgressBar (as it was in this ...
7
votes
3answers
552 views

How can this SwingWorker code be made testable

Consider this code: public void actionPerformed(ActionEvent e) { setEnabled(false); new SwingWorker<File, Void>() { private String location = url.getText(); @Override ...
6
votes
3answers
224 views

WatchService and SwingWorker: how to do it correctly?

WatchService sounded like an exciting idea ... unfortunately it seems to be as low-level as warned in the tutorial/api plus doesn't really fit into the Swing event model (or I'm missing something ...
6
votes
2answers
120 views

Swingworker instances not running concurrently

My computer has 4 cores and I am running a Java swing gui program. When I run my application it only uses two cores and about 30% CPU utilization. I have a large number of files to process and want to ...
6
votes
2answers
347 views

Can't get ArrayIndexOutOfBoundsException from Future<?> and SwingWorker if thread starts Executor

I play with multitreading for SwingWorker by using Executor, and I'm there by mistake identified wrong elements from the Vector, looks like as this code pretty ignores that element in Vector doesn't ...
6
votes
2answers
494 views

Java swing progress bar from EDT problem

This is for the swing experts out there. I have spent considerable time on this problem, so it is going to take me a few lines to explain the problem. I have a standalone java swing application (java ...
6
votes
7answers
2k views

What is the rationale of SwingWorker?

For what I can read, it is used to dispatch a new thread in a swing app to perform some "background" work, but what's the benefit from using this rather than a "normal" thread? Is not the same using ...
5
votes
2answers
198 views

Sleeping in a SwingWorker?

I need to feed test data to a Swing interval over a time period. The data set is long to parse, so I'm using a SwingWorker to parse it in the background. When it comes to feeding the data to the GUI ...
5
votes
5answers
383 views

How to share data with two(2) SwingWorker class in Java

I have two SwingWorker class: FileLineCounterThread and FileDivisionThread I will execute the two threads. When the lines counting thread finishes, it will pass the result to File Division thread. I ...
5
votes
4answers
549 views

Java 5 SwingWorker replacement

Our Swing application performs some long-running tasks in a background thread using the excellent SwingWorker class. However, a lot of older Macs only support Java 5, so we want to compile our ...
5
votes
3answers
268 views

Swing Worker Threads Not Concurrent

It seems that when I instantiate 12 Swing Worker threads, the first six starts to complete its task, it finishes AND then the last six starts and finishes. The behavior I'm looking for is all 12 ...
5
votes
2answers
2k views

Swing: Can't get JButton to update - repaint() not working

I'm using Swing for the first time to create a simple GUI. It consists of a JFrame upon which I have placed a single JButton which, when clicked, calls some other code which takes approx. 3 seconds to ...
4
votes
1answer
58 views

Whats the maximum number of swing worker threads that can be run

Is there an upper limit on the number of Swing Worker threads that can be run or is it like as far as the memory supports? Also is this configurable somewhere?
4
votes
3answers
145 views

java SwingWorker launching runnables from doInBackground() and howto notify event dispatch thread

just learnd the SwingWorker and have a question ( i have search for a answer to this but non specifically address this setup) Im creating a small server that will have like max simultaneous 2-3 ...
4
votes
3answers
166 views

How do I simulate a buffered peripheral device with SwingWorker?

I'm using this exercise as a pedagogical tool to help me burn in some Java GUI programming concepts. What I'm looking for is a general understanding, rather than a detailed solution to one specific ...
4
votes
2answers
371 views

java swing worker thread to wait for EDT

I've got a worker thread that should wait for EDT to update the GUI before continuing execution. I've used the publish method to tell EDT to change something. How can i make the worker wait for that ...
4
votes
3answers
773 views

How can I report progress from a background task?

I have a long running task that is executing in the background on an ExecutorService thread pool. What are some best practices in terms of this task returning progress or intermediate results? Are ...
4
votes
5answers
2k views

How to prevent swing GUI locking up during a background task

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 ...
3
votes
1answer
35 views

repainting an applet from a swingworker used to compute triangles and circum-circles

I am trying to replicate the applet found here as a part of an exercise. The applet is using Fortune's algorithm to generate both; a Voronoi diagram and Delaunay triangulation. I am just interested in ...
3
votes
1answer
51 views

java SwingWorker.doInBackground() must not access GUI elements

May be this is trivial, I am struggling to understand a simple documentation on SwingWorker. Here is the copy pasted content Workflow There are three threads involved in the life cycle of a ...
3
votes
1answer
57 views

Good way to set/refresh information with thread in java swing app

I'm not a Java programmer and I'm not sure if what I'm doing is correct or not, or if exist a better way to do this. I'm making a swing Java app with multi-threading. I have many swing component ...
3
votes
4answers
183 views

JButton stays in pressed state

In my Java GUI app I have a JButton and when clicked it calls a function to connect to a database, then calls a function to clear a table in the DB, then calls a function that reads text from one file ...
3
votes
1answer
83 views

Swing components freezing untill one component complete its job

I have created a simple JAVA Swing program that has a JTextArea, three JTextFields and one JButton. What this application does is when the user clicks the button it updates the JTextArea with a text ...
3
votes
4answers
163 views

How do I read a SwingWorker's result *without* busy wait?

I'm writing an application that executes its file menu actions using SwingWorker. Every called method returns a boolean value that tells, whether the operation was successfully executed or not. At ...
3
votes
4answers
62 views

Use of final variable in signature of Java SwingWorker method

I have a method that uses a SwingWorker. Part of the code is shown below: public class mySocket { public void writePacket(final String packet) { // schedules execution on the single ...
3
votes
2answers
202 views

Swingworker Timeout

I am using a SwingWorker to read data over a TCP connection and display when it comes back. new SwingWorker<EnvInfoProto, Void>() { @Override public EnvInfoProto doInBackground() { try ...
3
votes
2answers
110 views

Invoke function on main thread from background thread

Update I've updated this question to include source code of a Java implementation, using the suggested SwingWorker class, to accomplish the same result as the Objective-C example. Hopefully this will ...
3
votes
2answers
140 views

Should I be using a Java “worker thread” for this CPU simulation app?

I'm writing an emulator of an old computer in Java/Swing, and I think I've identified the design problem that I'm having. As idiosyncratic as this application is, I suspect someone will find a ...
3
votes
4answers
256 views

SwingWorker locks GUI on (unsuccessful) JLabel Icon updating

Ok im really struggling with unlocking my GUI which is locked due to separate SwingWorker thread. Basically what my program does: Initializes webcam, and then grabs single frame and displays it as ...
3
votes
3answers
547 views

SwingWorker: when exactly is called done method?

Javadoc of the done() method of SwingWorker: Executed on the Event Dispatch Thread after the doInBackground method is finished. I've clues that it is not true in the case of canceled worker. Done is ...
3
votes
4answers
728 views

How cancel the execution of a SwingWorker?

Currently I have two SwingWorker threads doing job on background. If an exception occurs, the method stop to work, but the thread still runnig. How I do to stop the execution and kill the thread of ...
3
votes
2answers
191 views

Prevent Swing GUI from becoming unresponsive when invoking a method which is both accessing Swing components and is time-consuming

The following line: SwingUtilities.updateComponentTreeUI(aComponent); is making my GUI unresponsive. When invoking this method to update the laf on a large portion of a GUI, it takes a lot of ...
3
votes
1answer
703 views

MVC Progress Bar Threading

I am using an MVC pattern for my design, when a user presses the search button, I call a search in the model, but I also want to update a progress bar with information returned from that model. I ...
3
votes
1answer
389 views

Why do my SwingWorker threads keep running even though they are done executing?

I'm implementing a GUI for a console application, and I need to do some actions (for example, parse an XML file) in a specified time interval. I decided to use javax.swing.Timer alongside SwingWorker ...
3
votes
2answers
758 views

Problem making a JProgressBar update values in Loop (Threaded)

Am trying to get my program to update the progress bar values constantly within a method while performing some operations. However this does not happen until the end, and the UI freezes. After ...
3
votes
4answers
435 views

Why SwingWorker? Why not just Thread or Runnable?

What are the advantages of using SwingWorker instead of Thread or Runnable?
3
votes
4answers
2k views

How do I wait for a SwingWorker's doInBackground() method?

Say I have the following code: import java.lang.InterruptedException; import javax.swing.SwingWorker; public class Test { private JDialog window; public Test { // instantiate ...
3
votes
1answer
300 views

SwingWorker doesn't work as expected

I'm trying to find the differences between SwingWorker execute() vs doInBackground().So I have written this simple program to test the difference. public static void main(String[] args) { // ...
3
votes
1answer
621 views

execute SwingWorker multiple times

I want to be able to use SwingWorker subclass multi times is this possible as I have read in the java doc "SwingWorker is only designed to be executed once. Executing a SwingWorker more than once ...
3
votes
1answer
359 views

Is there a way to pause/resume the SwingWorker

Is there a way to pause/resume the SwingWorker in Java ?
3
votes
2answers
316 views

backgrounds tasks by swingworkers become sequential

I am using SwingWorkers to make my GUI responsive. But I can not understand the following: I have a remote method I want to call from the GUI as the user presses a button. I have inside the action of ...
3
votes
2answers
308 views

Swing/SwingWorker Beginer's question

I am trying to implement a GUI in java but I am beginner in swing. I want to make something clear. I read that in order to keep the GUI responsive I should use the SwingWorker class to do the task in ...
3
votes
2answers
104 views

What if a large number of objects are passed to my SwingWorker.process() method?

I just found an interesting situation. Suppose you have some SwingWorker (I've made this one vaguely reminiscent of my own): public class AddressTreeBuildingWorker extends SwingWorker<Void, ...
3
votes
1answer
344 views

Java Swingworker: Not as encapsulated class

I'm having problems passing information, updating progress and indicating "done" with a SwingWorker class that is not an encapsulated class. I have a simple class that processes files and ...
3
votes
3answers
580 views

Swing: what to do when a JTree update takes too long and freezes other GUI elements?

I know that GUI code in Java Swing must be put inside SwingUtilities.invokeAndWait or SwingUtilities.invokeLater. This way threading works fine. Sadly, in my situation, the GUI update it that thing ...
3
votes
3answers
637 views

Timeout a task with Java's SwingWorker

I am trying to implement a SwingWorker class within my application. Is there a way to set a length of time that after which, the SwingWorker "times out"? I was thinking that maybe throwing an ...
3
votes
2answers
224 views

Make GUI more responsive

The program I have visualizes a physics simulation (basically). Right now, it works, but can get very unresponsive, and I think I know why - too much (read:all) computation is done on the event ...
3
votes
3answers
1k views

Java GUI and Multiple Instances of the SwingWorker Class

I'm making a GUI using Java (who isn't?). I know the Swing Worker class enables computation in the background to prevent the GUI from hanging, but I was wondering if there could be too much of a good ...

1 2 3 4