The event-dispatch-thread tag has no wiki summary.
5
votes
3answers
70 views
How to indicate that a JComboBox is loading values?
I have a JComboBox whose values are retrieved across the net.
I'm looking for a way to indicate that fact to the user, when the user wants to see the list, expands the drop down, and only then the ...
4
votes
2answers
104 views
Java Swing Update Label
I have a message label and a submit button. The submit button will be pressed multiple times, and the action for the each press can take up to a minute.
When the button is pressed, I want to set the ...
4
votes
4answers
96 views
When to use SwingUtilies.invokeAndWait/invokeLater
I read somewhere that for any thread that affects the visuals of the gui it should be ran in the EDT using SwingUtilities.invokeAndWait/invokeLater
For a basic gui, is it necessary to put something ...
4
votes
3answers
67 views
Find event dispatch thread violations
We all know we should do all GUI related tasks from the event dispatch thread and that weird bugs can be introduced otherwise - I try to remember this rule but I must admit I've noticed a couple of ...
4
votes
3answers
196 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
4answers
249 views
How to update/paint JProgressBar while Swing is loaded building the GUI
I have a GUI which is quite heavy to build/initialize on the platform on which it runs.. Therefore I want to update progress while it initializes..
I have a small undecorated JDialog containing a ...
4
votes
6answers
444 views
Java: debugging with SwingUtilities.invokeLater()
I use SwingUtilities.invokeLater() frequently. Doing so, however, makes it difficult to debug in certain cases: you can't see a stack trace of the code that called SwingUtilities.invokeLater(), ...
3
votes
2answers
44 views
Dynamically removing component from JPanel
Here is runnable piece of code explaining the problem -
I can remove s1 and s2 but not s3.
This does not seem MigLayout related (I happen to be using it) as I see the same behavior with default ...
3
votes
1answer
42 views
Java: second window is blank
I have a weird issue... I'm a relatively new "enthusiast" Java programmer (I used to make my living hacking Perl, in a previous career), working on my first semi-real application. "Main-Class" is the ...
3
votes
1answer
105 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
46 views
Deadlock when using setText on JTextArea in Swing
I have the following Java Program which one starts in about 50% of all launch attempts. The rest of the time it seams to deadlock in the background without displaying any GUI. I traced the problem to ...
3
votes
2answers
102 views
Where is lost setSelected from JCheckBox
Can someone to explain me where I lost setSelected() for JCheckBox when I put into ItemListener the JOptionPane, is this bug ?
Just curiosity is that if is this procces delaled into invokeLater() ...
3
votes
2answers
116 views
Multiple Event Dispatch Threads
I am new to Java Swing and my question is related to Event Queues and Dispatch threads.
I read that it is possible to have multiple event queues , each per AppContext instance. Similarly does it mean ...
3
votes
2answers
518 views
java swing clear the event queue
Is it possible to do this in a standard manner?
Here is the scenario.
Start doing something expensive in EDT (EDT is blocked till the expensive operation is over).
While EDT was blocked, the user ...
3
votes
6answers
159 views
Background job running without affecting the rest of the gui
I'm asking for assistance concerning a general approach.
I have written some java code to check my mailbox for unread mails on buttonclick.
Now I want this code to permanently run in the background ...
2
votes
2answers
34 views
Postpone Event Queue after Focus Lost
I have a JTable with a custom cell editor. The editor implements FocusListener so I can check if the cell's contents is valid if the user clicks away from the cell.
I'd like to use a JOptionPane ...
2
votes
2answers
55 views
Flow of execution when using Swing
I'm just getting to grips with GUI programming in java. Here is a trivial program (from O'Reilly's "Head First Java") which on the face of it looks easy to understand, but there's an aspect of it ...
2
votes
2answers
59 views
create a server application having gui
I have to create an application having a GUI. my application has to work as a server. When it starts, it has to accept all the incoming connection and write the output in a JTextArea. my problem is ...
2
votes
3answers
93 views
How to detect when main thread freeze GUI in java?
I want to detect when some time consumption operations in main thread cause gui freeze.
My target is to set and unset wait cursor automatically.
thanks
2
votes
3answers
94 views
Why do I need to have a runnable instead of calling directly from main?
Simple code from java.sun:
public class BasicApp implements Runnable {
JFrame mainFrame;
JLabel label;
public void run() {
mainFrame = new JFrame("BasicApp");
label = ...
2
votes
2answers
84 views
How do I know if I'm on the event dispatch thread?
1.Consider my code is on some line of a JPanel that I have, am I automatically on EDT?
2.Same question for all other classes which are not belong to GUI, JPanels or other view classes, simple ...
2
votes
3answers
210 views
javax.swing.JFrame setText() in a loop? + intentional delay?
I am very new to Java (only been using it for about a week) and I'm working on a store simulator. Basically I just want to get basic things done right now like having a time until closing and a time ...
2
votes
2answers
272 views
how to update a jLabel every time with a while loop with a delay
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
int count = jSlider1.getValue();
int delay = jSlider2.getValue();
int ...
2
votes
2answers
191 views
Java EventQueue. Why should everything be in invokelater method?
in the book that i'm reading, every example of GUI with multithreading has something like that:
public static void main(String[] args) throws Exception
{
EventQueue.invokeLater(new Runnable()
...
2
votes
4answers
435 views
How to prompt a confirmation dialog box in the middle of non event dispatching thread
I have the following fun which will be executed by non event dispatching thread. In the middle of thread, I want a
A confirmation box pop up. Thread suspend its execution.
User makes a choice.
...
2
votes
7answers
208 views
How to retrieve a value that must be computed on another thread
There are many cases where thread A requires a value that must be computed on thread B. (Most commonly, B == EDT.) Consider this example:
String host;
SwingUtilities.invokeAndWait(new Runnable() {
...
2
votes
3answers
127 views
Java: is there a SwingUtilities.invokeNowOrLaterIfEDT(…) or similar?
(be sure to read the edit below, this question is obviously confusing I'm sorry about that)
Here's a typical SwingUtilities.invokeLater call:
SwingUtilities.invokeLater( new Runnable() {
...
1
vote
1answer
25 views
EDT and other Thread relations regard repaint() method java
if the GUI was sure build by EDT does a repaint call on some other Thread invoke painting on the EDT? if not, how do i make sure it does, the more efficient the better.
1
vote
0answers
84 views
Why do I get Exception in thread “AWT-EventQueue-0” java.lang.ArrayIndexOutOfBoundsException: 2?
I am getting this error every time I try to update the data in my JTable:
Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 2
at ...
1
vote
2answers
41 views
Event Dispatch Thread - reporting
I was wondering, I want to report some form of progress from my swing worker back to the main thread so my interface can be updated with a label that changes as the progress increases, for example
...
1
vote
2answers
90 views
Why my GUI in java Freeze when I start calculation in Java
I am developing a java application
but my application Freeze when I start the process of my application
therefore I can update my GUI during the process
do you guys have any idea how to fixed ...
1
vote
2answers
61 views
Nothing is displayed when I add a JTextField
Nothing is displayed if I change the code from the first example to the second (See screenshots:
Main class:
public class Main extends JTabbedPane {
public static void main(String[] args) {
...
1
vote
1answer
40 views
Running function on EDT from doInBackground
I want to run a certain function from doInBackground on the EDT. I have it currently setup using publish and process which is working just fine. However, I want to know if there is a way to have a ...
1
vote
2answers
69 views
AWT EventQqueue AccessControlException
I am pushing my own test event queue over the System eventqueue. And in TestEQueue I have over loaded the dispatchEvent method with one call to super.dispatchEvent
TestEQueue mytestqueue = new ...
1
vote
1answer
99 views
Swing invokelater freeze
im calling invokeLater direcly from button on actionPerformed with this code:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
SwingUtilities.invokeLater(new Runnable() {
...
1
vote
1answer
97 views
Forcing JLabel to display text before expensive operation
I'm having trouble getting a JLabel to display text immediately before updating it with an ImageIcon.
I have a JLabel that is a fixed size that will be displaying either text or an image that fits it ...
1
vote
4answers
196 views
Why is my JTextArea not updating?
I have code as follows:
class SimplifiedClass extends JApplet {
private JTextArea outputText;
// Lots of methods
public void DoEverything() {
String output = "";
for(int ...
1
vote
2answers
230 views
Java Swing - How to run two components in Event dispatch thread at the same time?
I have a JButton that when i click on it, i load some data from a database + initialize a JDialog that has many controls + fill those controls with the loaded data then show that slow JDialog. This ...
1
vote
2answers
238 views
Creating the “JOptionPane effect” with my own JFrame
I have this main JFrame (call it DrinkChooser) that shows another complex confirmation JFrame (call it ConfirmWin).
The ConfirmWin has only two JButtons, confirm and cancel.
I want to do this:
(in ...
1
vote
2answers
228 views
Displaying JWindow in the event dispatching thread
What I am trying to do is have a small splash screen appear while my program is loading something. This is what I have:
SplashScreen.showSplashScreen();
// Do stuff that takes time.
...
1
vote
6answers
162 views
How can I run all methods of a class on Event Dispatch Thread
I've created a Swing component which has several methods.
Now I want all methods of this class be run on Event Dispatch Thread (EDT), while callers are on Worker threads.
The only solution currently ...
1
vote
4answers
496 views
Returning values from Swing using invokeAndWait
I've been using the following approach to create components and return values from Swing to/from outside the EDT. For instance, the following method could be an extension to JFrame, to create a JPanel ...
0
votes
3answers
44 views
Java progress bar to work simultaneously work with application code
I am a beginner in java .So please let me know how can i simultaneously run the progress bar and my application code together.In other words i want to make my progressbar to increment as long as my ...
0
votes
1answer
19 views
IPhone Event sent from child thread to main thread through method dispatch_async, slow, try to improve.
App receives event from child thread, but we need to send it to main thread to do UI update issue, current now use method dispatch_async, dues to main thread is very busy, for some case it will cost ...
0
votes
2answers
54 views
JTextArea default value?
I have been taught only to manage the GUI through the event dispatcher thread. Currently I am using a textArea.append("something"); outside of the event dispatcher thread, but I want this to always ...
0
votes
2answers
113 views
Eclipse/Java: uncaught exceptions on the EDT suspend execution in EventDispatchThread.run()
This is a minor annoyance I have when debugging with Eclipse. With "Suspend execution on uncaught exceptions" checked, the debugger will normally suspend a thread right where the exception was thrown. ...
0
votes
2answers
71 views
Understanding the scope of code evoked in the Java Event Dispatch Thread
I'm trying to understand which events will be managed from an event disptach thread (EDT).
Let's assume something simple, a simple piece of code that simple opens a JOptionPane, waits for the ...
0
votes
1answer
97 views
How can I solve delay in showing count down timer(JLabel) in Swing JPanel
I've implemented a count down timer(in function) which updates a label in swing panel every second this is the code:
public void DefineTimer()
{
Action updateClockAction = new ...
0
votes
1answer
56 views
Only shows the lastly added JPanel to JFrame in Event-Dispatch thread
I can only see the JPanel added at last. Previous ones seem to be replaced by the last one. Why is this? Here's my code. Thanks in advance.
...
class GUIController {
BaseFrame bf = new ...
0
votes
2answers
63 views
Adding additional panels to a JFrame which lives in a EventDispath thread, from outside that?
I create a new frame in EventDispatch thread and want to add new Panels to that later on. But all i get is a blank frame, with 0 height. But panels added from inside the inner class are displayed. How ...