当用户单击GUI应用程序中的按钮时,我将执行长时间运行的绞盘:
simplfyButton.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent e) {
simplfyAllText();
}//mouse evebt
});
simplfyAlltext()方法执行一些GUI调用,然后执行一个长期运行的任务,所以我将其放置为SwingWorker:
private void simplfyAllText() {
/*
* User has imported a text document for simplfying Depending on the size of the
* document this could be time consuming So we will perform this on a
* SwingWorker thread
*/
// If user selects 'Simplfy' before any import is done
if (!clearTextArea) {
message_textArea.setText("");
clearTextArea = true;
displayMessage("You must import your text doucument to simplfy.", "Notice!");
return;
} else if (message_textArea.getText().length() <= 20) {
displayMessage("You must import your text doucument to simplfy.", "Notice!");
return;
}
// Set up stuff outside the worker thread
exchangedText.setText("");
progressBar.setIndeterminate(false);
progressBar.setStringPainted(true);
progressBar.setVisible(true);
message_textArea.setEditable(false);
// Create our worker to all heavy tasks off the event dispatch thread
SwingWorker<String, Integer> sw = new SwingWorker<String, Integer>() {
String simplifiedText = "";
@Override
protected String doInBackground() throws Exception {
// Simplfy the text form message TA
int size = message_textArea.getText().length();
for (int i = 0; i < size; i++) {
publish(i);
}
simplifiedText = textSimplfier.simplyFullText(message_textArea.getText());
return "finished";
}
@Override
protected void process(List<Integer> chunks) {
// define what the event dispatch thread
// will do with the intermediate results received
// while the thread is executing
for (int val : chunks) {
progressBar.setValue(val);
countButton.setText(Integer.toString(val));
System.out.println("PROCESS : " + val);
}
}
@Override
protected void done() {
// this method is called when the background
// thread finishes execution
outPut_TextArea.setText(simplifiedText);
String exchanged = textSimplfier.getSwappedWords().toString();
exchangedText.setText(exchanged);
// remove 1/3 for : between words
String wordsWithoutHTML = "";
try {
wordsWithoutHTML = exchangedText.getDocument().getText(0, exchangedText.getDocument().getLength());
} catch (BadLocationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
int noExchanged = ((wordsWithoutHTML.length() / 3) * 2);
int noOfWords = message_textArea.getText().length();
keyWord_TextField.setText(
"Complete!. " + noExchanged + "/" + noOfWords + " simplfied. Click /'Clear/' to continue.");
}
};
sw.run();
}
即使长时间运行的后台任务在SwingWorker线程上运行,GUI在执行过程中仍然微不足道,并且SwingWorker.process方法的进度似乎无法更新ProgressBar。任何输入表示赞赏。