-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwingThreadTest.java
114 lines (102 loc) · 3.4 KB
/
SwingThreadTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package swing;
import javax.swing.*;
import java.awt.*;
import java.util.Random;
/**
* This program demonstrates that a thread that runs in parallel with the event
* dispatch thread can cause errors in Swing components.
*
* @author Cay Horstmann
* @version 1.24 2015-06-21
*/
public class SwingThreadTest {
public static void main(String[] args) {
EventQueue.invokeLater(() -> {
JFrame frame = new SwingThreadFrame();
frame.setTitle("SwingThreadTest");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
});
}
}
/**
* This frame has two buttons to fill a combo box from a separate thread. The
* "Good" button uses the event queue, the "Bad" button modifies the combo box
* directly.
*/
class SwingThreadFrame extends JFrame {
public SwingThreadFrame() {
final JComboBox<Integer> combo = new JComboBox<>();
combo.insertItemAt(Integer.MAX_VALUE, 0);
combo.setPrototypeDisplayValue(combo.getItemAt(0));
combo.setSelectedIndex(0);
JPanel panel = new JPanel();
JButton goodButton = new JButton("Good");
goodButton.addActionListener(event ->
new Thread(new GoodWorkerRunnable(combo)).start());
panel.add(goodButton);
JButton badButton = new JButton("Bad");
badButton.addActionListener(event ->
new Thread(new BadWorkerRunnable(combo)).start());
panel.add(badButton);
panel.add(combo);
add(panel);
pack();
}
}
/**
* This runnable modifies a combo box by randomly adding and removing numbers.
* This can result in errors because the combo box methods are not synchronized
* and both the worker thread and the event dispatch thread access the combo
* box.
*/
class BadWorkerRunnable implements Runnable {
private JComboBox<Integer> combo;
private Random generator;
public BadWorkerRunnable(JComboBox<Integer> aCombo) {
combo = aCombo;
generator = new Random();
}
public void run() {
try {
while (true) {
int i = Math.abs(generator.nextInt());
if (i % 2 == 0)
combo.insertItemAt(i, 0);
else if (combo.getItemCount() > 0)
combo.removeItemAt(i % combo.getItemCount());
Thread.sleep(1);
}
} catch (InterruptedException ignored) {
}
}
}
/**
* This runnable modifies a combo box by randomly adding and removing numbers.
* In order to ensure that the combo box is not corrupted, the editing
* operations are forwarded to the event dispatch thread.
*/
class GoodWorkerRunnable implements Runnable {
private JComboBox<Integer> combo;
private Random generator;
public GoodWorkerRunnable(JComboBox<Integer> aCombo) {
combo = aCombo;
generator = new Random();
}
public void run() {
try {
while (true) {
EventQueue.invokeLater(() ->
{
int i = Math.abs(generator.nextInt());
if (i % 2 == 0)
combo.insertItemAt(i, 0);
else if (combo.getItemCount() > 0)
combo.removeItemAt(i % combo.getItemCount());
});
Thread.sleep(1);
}
} catch (InterruptedException ignored) {
}
}
}