我需要编写一个JApplet停止方法,当applet最小化时,通过向第二个线程发送suspend()消息来挂起第二个线程。然后,当小程序未经最小化时,我必须恢复该线程。
import javax.swing.*;
import java.awt.*;
public class StopResume extends JApplet
{
private final static int THREADS = 3;
private Counter[] t = new Counter[THREADS];
private JTextField[] tf = new JTextField[THREADS];
public void init()
{
final int TEXTFIELD_SIZE = 5;
JLabel title = new JLabel("JTextFields are changed by different threads."),
subtitle = new JLabel("Minimizing applet results in -");
JLabel[] labels = {
new JLabel("Thread#1 being stopped, count gets reset: "),
new JLabel("Thread#2 being suspended, count resumed:"),
new JLabel("Thread#3 not affected, count continues: ")
};
Container c = getContentPane();
c.setLayout(new FlowLayout());
c.add(title);
c.add(subtitle);
for (int i = 0; i < THREADS; i++)
{
tf[i] = new JTextField(TEXTFIELD_SIZE);
c.add(labels[i]);
c.add(tf[i]);
t[i] = new Counter(tf[i]);
t[i].start();
}
} // End of init method definition
public void stop()
{
}
public void start()
{
}
} // End of StopResume class definition
class Counter extends Thread
{
private JTextField tf; // the JTextField where the thread will write
public Counter(JTextField tf)
{
this.tf = tf;
}
public void run()
{
final int ONE_SECOND = 1000; // in milliseconds
for (int i = 0; i < Integer.MAX_VALUE; i++)
{
tf.setText(Integer.toString(i));
try
{
sleep(ONE_SECOND);
}
catch(InterruptedException ie)
{
}
}
} // End of run method definition
} // End of Counter class definition
答案 0 :(得分:1)
您可以使用flag和sleep loop实现挂起功能。
向Counter
主题添加新的布尔字段:
private volatile boolean isSuspended = false;
将控制方法添加到Counter
线程:
public suspendCounter() {
isSuspended = true;
}
public resumeCounter() {
isSuspended = false;
}
将额外的睡眠循环添加到run方法中,该方法在isSuspended打开时进行迭代:
for (int i = 0; i < Integer.MAX_VALUE; i++) {
tf.setText(Integer.toString(i));
try {
sleep(ONE_SECOND);
} catch(InterruptedException ie) {
}
while (isSuspended) {
try {
sleep(100);
} catch(InterruptedException ie) {
}
}
}