I have code as follows:

class SimplifiedClass extends JApplet {

    private JTextArea outputText;
    // Lots of methods
    public void DoEverything() {
        String output = "";
        for(int i = 0; i <= 10; i++) {
            output += TaskObject.someLongTask(i);
            outputText.setText(output);
        }
    }
}

However, instead of updating the text area after each iteration of the loop when setText is called, it appears to only update the text when all the runs of the task are done. Why does this happen, and how can I resolve it?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

You're probably using the Swing thread which is waiting for your code to execute before it can update the UI. Try using a separate thread for that loop.

public void DoEverything() {
  SwingUtilities.invokeLater(new Runnable() {
    public void run() {
      String output = "";
      for(int i = 0; i <= 10; i++) {
        output += TaskObject.someLongTask(i);
        outputText.setText(output);
      }
    }
  });
}
link|improve this answer
2  
+1 Don't block the EDT. – Andrew Thompson Jul 21 '11 at 10:55
feedback
private JTextArea outputText = new JTextArea();

public void DoEverything() {
    String output = "";
    for(int i = 0; i <= 10; i++) {
        output += TaskObject.someLongTask(i);
        appendNewText(output);
    }
}

public void appendNewText(String txt) {
  SwingUtilities.invokeLater(new Runnable() {
     public void run() {
        outputText.setText(outputText.getText + txt);
       //outputText.setText(outputText.getText + "\n"+ txt); Windows LineSeparator
     }
  });
}
link|improve this answer
+1 for continuation. – trashgod Jul 21 '11 at 13:43
feedback

Use append(str) method of JTextArea instead of setText(str).

Here what is happening is every time it goes in loop it updates text area text by setting a new text in it. So which ever comes last stays there in text area.


May be you want to see data as they gets appended. Currently you can't see it because it happens so fast that we can't see that. If you want to see data as they gets appended then try putting a sleep in loop after appending text.

    JFrame frame = new JFrame();
    frame.setSize(400, 400);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    final JTextArea area = new JTextArea();
    frame.add(area);
    frame.setVisible(true);
    for (int i = 0; i < 10; i++) {
        area.append(i+"");
        try {
            Thread.sleep(100);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
link|improve this answer
Tried this, it didn't change. The text still all appears a once at the end. – Macha Jul 21 '11 at 10:14
What you actually want to do? Will you please elaborate? – Harry Joy Jul 21 '11 at 10:16
I want the JTextArea to be update with the result of TaskObject.someLongTask() after every run. It returns a String with output information. (Specifically, timing a page download) – Macha Jul 21 '11 at 10:24
@Macha: It gets updated with your information but it just that it does it so fast that you cant see it after every run. – Harry Joy Jul 21 '11 at 10:35
feedback

Try using outputText.validate() after outputText.setText(output)

link|improve this answer
feedback

Try using outputText.validate() after outputText.setText(output)

I tried this for my program too which is similar. For some reason using the Thread.sleep(delay) directly following a outputText.setText("dsfgsdfg"), even with a outputText.validate() does not allow the user to see the output. It's the strangest thing. It is as if the code is read after the setText method is trying to be invoked. Then hits the sleep method and it all goes to hell.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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