I have the following fun which will be executed by non event dispatching thread. In the middle of thread, I want a

  1. A confirmation box pop up. Thread suspend its execution.
  2. User makes a choice.
  3. Thread will get the choice and continue execution.

However, I find out it is not easy to do it in thread safety way, as dialog box should be shown by event dispatching thread. I try

public int fun()
{
    // The following code will be executed by non event dispatching thread.
    final int choice;
    SwingUtilities.invokeAndWait(new Runnable() {

        @Override
        public void run() {
            // Error.
            choice = JOptionPane.showConfirmDialog(SaveToCloudJDialog.this, message, title, JOptionPane.YES_NO_OPTION);
        }            
    });
    return choice;
}

Of course this won't work as choice is final, and I cannot assign the returned value from dialog to it.

What is the correct way to achieve the above 3 objectives?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Have you tried:

public int fun()
{
    // The following code will be executed by non event dispatching thread.
    final int[] choice = new int[1];
    SwingUtilities.invokeAndWait(new Runnable() {
        @Override
        public void run() {
            // Error.
            choice[0] = JOptionPane.showConfirmDialog(SaveToCloudJDialog.this, message, title, JOptionPane.YES_NO_OPTION);
        }            
    });
    return choice[0];
}
link|improve this answer
feedback

Contrary on the popular belief you dont need to dispatch to AWT (EventQueue) thread to show the dialog. So just show it.

When you do JOptionPane,showMessge() your thread (Thread.currentThread()) is going to do wait(), and the dialog will pop up. Use the result after showMessage and you're good to go.

Thus:
choice = JOptionPane.showConfirmDialog(this, message, title, JOptionPane.YES_NO_OPTION);

link|improve this answer
But, is it safe to call JOptionPane from user thread? stackoverflow.com/questions/1595744/… – Yan Cheng CHEOK Jan 21 '11 at 0:38
Well, that can be potentially unsafe to put it other words: you share no object whatsoever. AWT (the dialog) itself is thread safe. The execution, events, buttons, etc, is performed in the AWT thread. Like I've told already, the current thread blocks until the dialog is closed (closing the dialog and the following notify(), ensures all the memory fences you might need) – bestsss Jan 21 '11 at 0:51
I replied there as well. Basically if you try to modify the dialog outside the AWT (EventQueue) thread then you are potentially runnig into a race, also modifying quite a bit of AWT provided stuff is thread safe. Note, there can be only one active AWT thread, although there could be more than a single EventQueue thread running. – bestsss Jan 21 '11 at 0:55
Do you have any concrete reference for your statement? As most Oracle Java example is that, when they try to show an GUI dialog, they will have it on GUI dispatch thread. Another 3rd parties code example do the same as well : java2s.com/Code/Java/Threads/… – Yan Cheng CHEOK Jan 21 '11 at 16:46
feedback
public int fun() throws InterruptedException, InvocationTargetException {
    // The following code will be executed by non event dispatching thread.
    ChoiceRunnable runabble = new ChoiceRunnable();
    SwingUtilities.invokeAndWait(runabble);

    return runabble.choice;
  }

  class ChoiceRunnable implements Runnable {
    private int choice;

    public void run() {
      choice = JOptionPane.showConfirmDialog(SaveToCloudJDialog.this, message, title, JOptionPane.YES_NO_OPTION);
    }
  }
link|improve this answer
you dont need to dispatch, there is not reason for... – bestsss Jan 20 '11 at 20:52
feedback

May be I do not understand the question, but I do not get the answers either... if you want the calling thread to block on the call to fun(), why display the JOptionPane in a new (parallel) Thread? Shouldn't this be sufficient?

public int fun() {
    return JOptionPane.showConfirmDialog(null, message, title, JOptionPane.YES_NO_OPTION);
} 

PS How do you define a non event dispatching thread?

link|improve this answer
1  
+1 This is the correct solution. – Shakedown Jan 20 '11 at 21:03
having null, as component is hard the correct one :) also it's correct by chance – bestsss Jan 20 '11 at 21:07
@bestsss: Providing null for the Component argument is perfectly okay; in this case, a default Frame is used. See download.oracle.com/javase/6/docs/api/javax/swing/… – Shakedown Jan 20 '11 at 22:54
@Shakedown: I know that very well, but modality may not suffice what you need (The JFrame is the same if you dont provide Window for creating a new JDialog(), which while inaccessible under normal conditions [SwingUtilities.getSharedOwnerFrame() is package private] new JDialog().getOwner() returns it). Also that will place the dialog on the default screen w/ multi-screen setup. See, not such a rookie as expected. – bestsss Jan 21 '11 at 0:09
On a side: I quite rarely read the javadoc and just go for the source code. It's not a practice I'd recommend but at least I am sure what I opt for – bestsss Jan 21 '11 at 0:13
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.