The event dispatch thread, or EDT, is a special background thread which handles events from the Java GUI event queue. Swing and Android has different implementations but similar by concept.
0
votes
2answers
31 views
Java - Periodic updates from MySQL
I am developing a Scoreboard Java application for my work. It uses MySQL to store the score values and a Java application accesses them and displays them on a projector. So far I have managed to ...
-1
votes
0answers
14 views
Rendering in Applet doesn't work
I made a little program to test Applets. Sadly, it doesn't work completely.
The Application as Client-Program renders perfectly. Also, trying it using the Appletviewer works fine. But when uploading ...
0
votes
1answer
36 views
Visibly Moving JProgressBar
I have a JProgressBar and want to be able to see it dynamically updated. The progress bar should be able to visibly move from one position to another, not just change without the bar visibly changing ...
0
votes
0answers
30 views
JList is not updating correctly when action listner is a thread
I have a button ActionListener that is a Thread. Within this thread's run method I try to update a JList setListData() method and it does not update. It worked with a combobox but not a JList.
I ...
0
votes
1answer
49 views
JList not updated when ListModel is updated
The JList is not updated when I update the associated model from another background thread. I have an EmployeeFrame class defined as:
public class EmployeeFrame extends JFrame implements ...
-1
votes
1answer
35 views
Making my ERROR message in GUI disappear
I have this simple GUI that ask for a string and then write it to a text file but if no input is given the JLabel shows an error message and i want that error message to stay for 5 seconds
...
-1
votes
2answers
46 views
Explain Runnable and Invoke()
Can someone please explain this below written code ?
public void setSelectedFolder(final File f){
if(f != null){
Runnable r=new Runnable(){
public void run(){
...
0
votes
2answers
32 views
Thread sleep in actionPerformed
I am trying to make a tiny program that has 3 buttons, all of them of white color. Pressing the first button (that has the text "Go!") will cause the second button to become orange for 3 seconds and ...
1
vote
1answer
37 views
Why does my JFrame not update
I have this piece of code of a JFrame that will show the user the progress during the importing time of images:
public class LoadFrame implements Runnable {
JProgressBar progressbar;
JPanel ...
1
vote
1answer
35 views
Can I run two EDTs?
This is mostly a theoretical question. The example below is what made me think of it, but it may not be the best example. Please assume that the reason's below are concrete, and can't for the moment ...
0
votes
1answer
45 views
Buffered Keyboard Input
I am trying to write a 2d graphical game. In this game I have keyboard inputs to move a square block on a black plane. I order to ensure smooth key motions I want to use Buffered key input. In order ...
0
votes
2answers
36 views
Swing, update textfield value within a for
I'm trying to update my Java Swing form within a for. I tried many ways, but it wasn't working. This is what I last tried:
for(int i=0; i<10; i++) {
jTextField1.setText("" + i);
try {
...
0
votes
1answer
29 views
Timer util wont add a new line for JLabel
Why is that When I user the Timer.util the JLabel wont allign with my String that I inserted in my JTextPane? But when I use the Timer it Allign. I need the Timer.util for my database so it wont lag.
...
0
votes
1answer
55 views
Java Thread handling
I am trying to make a stoplight that performs certain tasks after a button is clicked. What this stoplight is supposed to do is change from green to yellow after 50 secs, from yellow to red after 10 ...
0
votes
2answers
58 views
FileInputStream / FileOutputStream blocking?
I have the following code which successfully copies a file. However, there are two problems with it:
The System.out.println() immediately after the progressBar.setValue() does not print intervals ...
1
vote
2answers
38 views
Using Thread with paint java
I'm developing a checkers game in Java, and I stumbled on a problem.
What I'm trying to create is that when a checkerpiece is pressed, the available 2 spots in front of it should turn into grey for 2 ...
0
votes
2answers
82 views
MultiThreading in java, I want both UI and code to execute in parallel
I have a JFrame with progress bar and my code which should run it in background showing the progress in progress bar.
I implemented runnable in my Progressbar class and started the thread. But the ...
0
votes
1answer
40 views
Is there a speed limit on JLists?
I'm baffled. With extensive testing I can confirm that if I add objects faster than y to the DefaultListModel connected to the JList, the JList dissapears.
Here's what I'm doing:
JPanel pane = new ...
-1
votes
0answers
43 views
Java setText() inside run() in IM Client
I have a similar problem with this post JTextField setText() method does not work in a run() method , i'm trying to create a simple IMClient, but the setText() inside the run() method doesn't work. ...
0
votes
2answers
59 views
Java, JPanel not displaying in JFrame, possible concurrency issue?
I have a Vector of 4 Frames that consist of a 2D array of JButtons that is contained within a JPanel. I am trying to add these to a JFrame so that they will display an animation when looped.
I have ...
0
votes
1answer
102 views
Counting in Java - Text field shows only last value
I've got a problem with my simulation of processor counter in java. I want to counting for example from 0 to 6 and show current values of counting (0, 1, 2, 3, 4, 5, 6) in Text field. When I click ...
0
votes
4answers
94 views
Changing JTextField's text while iterating or inside a loop [duplicate]
Let's say I have a JTextField "status" and I'm running this code:
status = new JTextField(50);
add(status);
for (int i=0; i<10000; i++) {
status.setText("bla bla - "+ i);
...
1
vote
0answers
47 views
Is there a way to intercept AWT events at the head end of the system Queue?
I have a graphics app and would like to (read only) be able to read events on the main event queue when they are deposited in the queue so they are not blocked by rendering.
Is there a way to do this ...
1
vote
2answers
33 views
Swing Runnable with parameters
I would like to run new Swing thread and pass a parameter into them.
Something like this:
String str;
SwingUtilities.invokeLater(new Runnable() {
public void run() {
Play game = new ...
2
votes
1answer
51 views
Java EDT and Spawning Dialogues
I am trying to learn the intricacies of Swing, and have read a great deal about the Event Dispatch Thread. I understand what is for, however am struggling with the following concept:
I have a JFrame ...
0
votes
1answer
37 views
Java JFrame update in lopp
Before coming here, I have searched all over the web and read dozens of topic talking about this but I can't fix my problem.
I want to show the progress of an upload. In the following code, ...
0
votes
0answers
48 views
Window Error like sound in my TextField
i am using following coding for getting values from database and it works well...
but problem is that when i hit enter button then it gives an error like sound.. please tell me where is wrong ...
0
votes
0answers
41 views
event dispatch thread [duplicate]
what is difference between event dispatch thread and any normal thread like main thread in creation swing compoments and handling events , what is features of event dispatch thread over main thread
...
0
votes
1answer
49 views
Making a block wait in a serial queue
I am using a serial queue in GCD like
dispatch_queue_t myCustomQueue;
myCustomQueue = dispatch_queue_create("com.example.MyCustomQueue", NULL);
dispatch_async(myCustomQueue, ^{
....
/* some ...
0
votes
0answers
9 views
Cannot update JGoodies binding while dragging the mouse
I have a marker that I am dragging in my plot that extends JComponent. While dragging I fire a property change listener event. It calls a setter on a bean bound with JGoodies that updates the ...
0
votes
1answer
49 views
Java threads in GUI with JMS
I am trying send messages with JMS in GUI Swing. When I make thread for JMS so Swing freeze, but messages are sending correct (by JBOSS logging) but it is unusable.
I need setting some parameters to ...
1
vote
1answer
42 views
Proxying Thread.UncaughtExceptionHandler from Clojure
I'm trying to implement a "complete" uncaught exception handler, allowing to also catch EDT exceptions in Clojure.
I'm trying to implement the class from the accepted answer (with 15+ upvotes) from ...
4
votes
3answers
75 views
invokeAndWait Java [duplicate]
Can any one tell me what is the actual difference between this two codes as they both produce same result?
code1:
public class JLabelDemo extends JApplet {
public void init() {
this.setSize(400, ...
1
vote
2answers
46 views
Initiating GUI as thread
I have a GUI class that works fine, however I have a button in that GUI class that is the supposed to open a new GUI from another class..
private void ...
3
votes
2answers
46 views
Flicker-free JComponent rendering within a Swing event handler
I'm writing a simple Java Swing application that is designed as a demo for a course. The purpose of the program is to visualize the progress of a recursive method (specifically, a recursive solution ...
1
vote
0answers
77 views
Another way to use SwingUtilities.invokeLater(Runnable r)?
All my sample programs create a big JFrame which contains all the code for its components, instead of creating separate classes for components and then adding these components to the big JFrame. This ...
0
votes
1answer
36 views
EDT specific methods and other stuff
My quest to understand swing and EDT continues once again...
Since EDT is EDT, the one and only, I would now like to know which methods, constructors and any other stuff is something that should be ...
-1
votes
1answer
69 views
Limitations of Swing [closed]
We all know that since Swing is not thread-safe, it can only be executed in one thread at a time, called the EDT.
What should I use in order to have a swinglike inteface and components that allows ...
0
votes
2answers
76 views
Progress bar updater using up CPU
I want to keep my user informed of the progress of an I/O operation. At the moment I've got an inner class that I kick off before I start my I/O and stop after it's done. It looks like this:
class ...
1
vote
2answers
101 views
Idiomatic way to refresh pixels of a BufferedImage in Swing
I've got a Swing UI where one part consist of a BufferedImage on which I need to regularly modify pixels.
It seems common to create a JLabel and to call the setIcon method on that JLabel by passing ...
0
votes
1answer
78 views
GUI freeze after click on button
I'm trying to create a client/server application. The problem is the confirm button on client side works for the first time input but if I hit the same button for the another input the client GUI will ...
1
vote
2answers
70 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 ...
1
vote
1answer
121 views
Why is my code not thread safe?
I'm creating a game where levels can be loaded from a file. This is done on a separate thread, while everything else is done on the Event Dispatch Thread.
I tested the code by loading from a really ...
3
votes
2answers
121 views
Thread sleep inside of actionPerformed method
First of all I want to say I'm aware this aproach is wrong so I'm asking this question because of pure curiousity. Lets say I have a swing application like this:
import java.awt.BorderLayout;
import ...
1
vote
3answers
132 views
How does Thread.sleep really work?
I've made a program that sets a button's setEnable from time to time. The Thread.sleep() is in another class. Here's the code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
...
1
vote
1answer
68 views
JTable Graphics not updating while adding rows to a DefaultTableModel
I have this cute problem with my prog (i'm a noob in this) i want to give my prog some animation and i want the divider in the split panel to move from gbPanel.getHeight()(MAX height) to ...
0
votes
1answer
93 views
JFrame freezes while running the code continuously
I have problem while working with JFrame, which get freezes while
running the code continuously. Below is my code:
On clicking on btnRun, I called the function MainLoop():
ActionListener ...
2
votes
1answer
98 views
How to use wait() and notifyAll() to communicate between a GUI class and logic thread
I have 3 primary classes in my program. The first extends applet (and acts as my main), the second is a thread (implementing Runnable) that handles the back-end logistics / communication with the ...
4
votes
3answers
89 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[][] ...
1
vote
2answers
51 views
Instant repaint and validate
I have to force my program to validate and repaint my gui (or part of it) the moment it adds a new component to it. There must be absolutley nothing done until the component is painted on the screen, ...




