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 ...

learn more… | top users | synonyms (1)

1
vote
2answers
40 views

java - JProgressBar while method is running

The Find() method is a sample of my method that makes a search of a word into some files. I call it from a Button_Start mouseclicked event. Here is my code: public void Find (String word) { ...
2
votes
1answer
60 views

Cancel anonymous SwingWorker

I have run into a weird dependency when trying to cancel an anonymous SwingWorker. My current code: private static void init() { if (connected) { return; } //final ...
0
votes
0answers
13 views

JProgress Bar not updating

Hello I want to update my JProgress Bar with the help of a Swing Worker class. I searched the other questions on this topic in this forum and took some code of a solution but in my case i does not ...
0
votes
1answer
73 views

Is it bad practise to utilize many threads? (through SwingWorkers)

My Java (Swing) application creates a new SwingWorker object when it needs to (e.g) download data from the Internet and do something at the same time (think display a loader). However, monitoring the ...
-3
votes
0answers
16 views

swing worker + timer cost a lot of memory [closed]

How can I use the swing worker + timer to use less memory in the pc? by which timer calls the swingworker class TextAreaMainPanelWorker() every 300 seconds that updates my chat messages to the newest ...
0
votes
1answer
34 views

SwingerWorker for Character Animation in an Applet?

With my current code I have a character that loads in a sprite sheet for the animation. My problem arises when I run the code. The game runs fine except that the player is loading/cycling sprites way ...
0
votes
0answers
46 views

Repainting GUI during execution

Need help with this code : private void runButtonActionPerformed(java.awt.event.ActionEvent evt) { if (runButton.getText().equalsIgnoreCase("run")) { ...
0
votes
1answer
16 views

Using SwingWorker to set a coordinate

Right now I am absolutely stuck with a project involving WorldWind, but its a general issue with the SwingWorker and swing Timer Classes. Basically I have a shape on a globe, that has a LatLon ...
1
vote
1answer
40 views

java swingworker not updating GUI

Basicaly the problem is that my SwingWorker is not doing what I intend it to do, I will use some simplified code examples in here which are similar to my code but without the nasty non-relevant ...
-1
votes
0answers
77 views

What's the most efficient way to read large text file and print it in text area using SwingWorker?

I am trying to read a text file (30MB) and print its content in the text area in real time. The problem is I have nearly 700 000 records and after printing ~150 000 my program starts to work very ...
0
votes
2answers
59 views

Updating Swing components while blocking the GUI

I was programming a GUI today, which is doing longer calculations when pressing a button. While the calculations are running, I wanted to use intermediate results of the still running calculation and ...
0
votes
0answers
59 views

How To Show A Loading JFrame Using JProgressBar

I'm new to java. I have coded an application that loads a JTable with data from an access database. I have also made a subclass of SwingWorker to do the loading of Jtable date in the background which ...
0
votes
1answer
81 views

Wait for thread to finish in Java

I have some code which executes a download in a separate thread, created so that the JFrame GUI will continue to update during the download. But, the purpose is completely defeated when I use ...
-2
votes
1answer
25 views

External call of SwingWorker custom methods

... SwingWorker<Boolean, Void> worker = new SwingWorker<Boolean, Void>(){ String a = "a"; getA() { return a; } protected boolean doInBackground() throws Exception{ ...
0
votes
2answers
136 views

SwingWorker publish()/process() acts like done()

Implementation details: I'm working on a school project in which I have to simulate some queues. At random intervals, clients should be generated, the client selects one queue(i can have multiple ...
2
votes
1answer
64 views

Calling super.approveSelection() within a SwingWorker

I have a customized JFileChooser Its approveSelection() method is slightly modified: public void approveSelection() { File file = getSelectedFile(); changeGui(); final Object a = ...
0
votes
2answers
76 views

Where should I invoke my swingworker in a Java MVC pattern

I have a program that is basically set up just like the one in this MVC example: http://www.leepoint.net/notes-java/GUI/structure/40mvc.html In my program there is a process which takes quite a bit ...
1
vote
2answers
71 views

Swingworker.done() freezes GUI for several seconds after it's done

I have a SwingWorker that reads and processes a file in the background, after which it formats and displays the data with various styles in a JTextPane. If the file is large (over 200K), I'll display ...
2
votes
1answer
101 views

Dialog isn't responsive while SwingWorker works in the background

I know this topic was covered several times. Despite reading through all the previous posts I can't seem to get my program running. Basically I got a JFrame with a main method as entry point. In this ...
4
votes
3answers
92 views

Can't override process() method in SwingWorker

I have a SwingWorker class as follows: class RemotePlayersWorker extends SwingWorker<String[][], Object> { PlayerCanvas parent; RemoteHandler remote; String[][] ...
0
votes
1answer
43 views

I am stuck with a compilation error in Swing Worker?

I wrote a class that extends SwingWorker. I wrote overriden functions: doInBackground, done, and process, but for some reason I am getting compilation error: The method process(List) of type ...
1
vote
1answer
65 views

Adding Listeners to a DefaultTableModel

I use a SwingWorker to change a DefaultTableModel according to changes in a database. My question is: is it safe to add a ListSelectionListener and a TableModelListener to the DefaultTableModel in ...
1
vote
2answers
119 views

Java SwingWorker not terminating on task completion

Ok, so I've been playing around with SwingWorker a bit and got some simplified code for updating a gui going, but I'm having trouble figuring out how to get the thread to properly terminate when it ...
2
votes
2answers
74 views

label.setVisible(true) doesn't do anything until after process completes

I have a dialog containing several buttons. When a particular button is clicked, it's ActionListener iniates a process that takes several seconds to complete. During this time I want to provide some ...
0
votes
2answers
133 views

How to properly extend FutureTask

While coding a computation-heavy application, I tried to make use of the SwingWorker class to spread the load to multiple CPU cores. However, behaviour of this class proved to be somewhat strange: ...
5
votes
1answer
85 views

Am I updating Swing component outside of EDT?

I've been reading a lot about Swing, threading, invokeLater(), SwingWorker, etc., but I just can't seem to get my head around it all, so I was trying to create a really simple program to illustrate. ...
2
votes
2answers
69 views

Running UI thread indefinitely

I am writing a piece of code using Java Swing. Basically what it does is that it processes some lengthy task. While the task is running, I want to have a waiting pop-up window with a GIF image in it. ...
0
votes
0answers
41 views

Passing SwingWorker output and using Future

I currently have a program which has multiple threads running in the background. All output data should be passed to a single thread which then processes, displays and continually appends to a file. ...
7
votes
4answers
153 views

Why does SwingWorker stop unexpectedly?

I wanted to try out some ideas using SwingWorker since I haven't used it too much. Instead, I ran into an issue and I can't figure out what's wrong. Here's a short SSCCE that demonstrates this ...
0
votes
0answers
124 views

Developing Swing Application tool with MS Access DB

I am planning to develop a swing application tool ie. Expense calculator or software for personal use. Is it possible to create such application so that I will talk with MS Access database to store ...
-1
votes
1answer
77 views

Make SwingWorker wait for variable update

Is there a way I can make the SwingWorker (in doInBackground method) come to a certain point of the code, stop there, monitor a ceratin variable, and then resume when the variable changes to a ...
3
votes
1answer
93 views

How to wait until a SwingWorker is complete?

I have a swing worker that computes in the background, while updating a progressBar in a JFrame. How can I make my main thread wait for the doInBackground () to finish? I know I can put things in ...
0
votes
3answers
84 views

Handling the cause of an ExecutionException

Suppose I have a class defining a big block of work to be done, that can produce several checked Exceptions. class WorkerClass{ public Output work(Input input) throws InvalidInputException, ...
3
votes
3answers
134 views

Implementing threading in Swing's EDT?

My project is built upon Java's Swing library. It spawns the EDT which displays my GUI (which works correctly). The entrance to the program, which initializes the EDT: public final class Main { ...
1
vote
3answers
165 views

Java socket swingWorker running but no message received or transmitted

A few days ago i tried to create a server - client or client Server as an experiment to learn about socket using a thread but then someone told me that i should use swingWorker. I did some research ...
-1
votes
1answer
71 views

Radio buttom click action in swing [closed]

I have 2 radio buttom as 'yes' and 'no'. after clicking on yes button i need 3 levels as below in the same frame. 1 what is ur name? --------- 2 ur age? --------- 3 sex? -------- similarly after ...
0
votes
1answer
165 views

JTable not updating from a SwingWorker thread

I currently have a JTable that is populated with a series of data that forms the basis of a import screen. When I have finished selecting which updates I want or do not want, I press on the Apply ...
2
votes
1answer
450 views

Dynamically updating Jtable while adding row's in loop

I'm trying to write simple application in Java to get all headers only from mail server. Actually everything works well except displaying data in JTable while using DefaultTableModel. The point is ...
1
vote
1answer
315 views

Progress bar freezing while downloading file in java [duplicate]

Possible Duplicate: JProgressBar wont update So I am trying to show the download progress of a file being downloaded in Java. I can output the current percentage as a String to the console, ...
3
votes
1answer
100 views

Java ImageWorker publish/process methods with array return type

I am trying to improve my SwingWorker class ImageWorker. ImageWorker is intended to be used on large arrays of images. ImageWorker is periodically called to load new images while the array indices of ...
1
vote
2answers
129 views

Setting generic types of SwingWorker as void? [duplicate]

Possible Duplicate: What is the difference between java.lang.Void and void? I wanted to create a concrete class for SwingWorker with both final and intermediate result types as void. I ...
1
vote
1answer
49 views

Run swingworkers sequentially with semaphore

I have a panel with a JTabbedpane and in every tab you can set parameters to execute a query. When one query is busy retrieving his data from the database, you can already open a new tab to set the ...
4
votes
3answers
245 views

Create swing components at runtime

i created the application and it behaves pretty much as expected. the gui keeps responsive as long as the database query is running. when creating the custom panels with SwingUtilities.invokeLater() ...
4
votes
1answer
428 views

Java slideshow image delay using paintComponent

I am putting together a slideshow program that will measure a user's time spent on each slide. The slideshow goes through several different magic tricks. Each trick is shown twice. Interim images are ...
0
votes
1answer
110 views

how to use timer with SwingWorker

need an example, how to use timer in SwingWorker ? because it impossible to add an ActionListener to my Timer like that ! private Timer timer = new Timer(100, new ActionListener() { @Override ...
2
votes
3answers
250 views

Applet processing a file works locally but fails in website

I've been bashing my head in on this problem for a few days now. I've done my full share of Googling, and I'm hoping I can find someone here that is more experienced than I (not hard to find haha) ...
1
vote
1answer
65 views

is SwingWorker.done() guaranteed to execute after the worker's last invocation of SwingWorker.process()?

Here's what the documentation for SwingWorker says: - doInBackground() executes in a worker thread - process() executes asynchronously on the Event Dispatch thread (AWT EDT). It's execution is ...
2
votes
2answers
148 views

Java running a Runnable from inside another Runnable won't work

why doesnt the following code work? Basically, this is a simplified version of a more difficult program in which I am trying to make an runnable initial screen with selections that would then have ...
0
votes
0answers
261 views

Sample code for an indeterminate SwingWorker

This isn't a question. It's sample code that works. The code may help others. And maybe there will be some posts about how to improve. it. I wanted an progress bar for a process that doesn't sent ...
1
vote
3answers
154 views

SwingWorker exceptions lost even when using wrapper classes

I've been struggling with the usability problem of SwingWorker eating any exceptions thrown in the background task, for example, described on this SO thread. That thread gives a nice description of ...

1 2 3 4 5 7