简单地说,我有两个类,一个GUI类,它有一个按钮,用于停止和运行另一个类/线程,用于从剪贴板获取文本内容并将其粘贴到文本文件中。但无论我尝试什么(比如使用摇摆工),我都无法实现我的目标。该代码可以启动线程但冻结GUI。我尝试使用SwingWorker,但失败了。请给我一个解决方案。
class GUI
{
Thread a = null;
JButton onOffButton;
onOffButt.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent arg0)
{
if (a == null)
{
isOn = true;
onOffButt.setText("on");
onOffButt.setBackground(Color.green);
a = new Thread(new TextHandler());
a.start();
}
else
{
isOn = false;
onOffButt.setText("off");
onOffButt.setBackground(Color.red);
a.interrupt();
a = null;
}
}
});
}
class TextHandler() extends Thread
{
run()
{
for(;;)
{
// getClipboardContent();
// evaluate
// paste
}
}
}
答案 0 :(得分:1)
你的TextHandler
在哪里做了什么,比如睡觉,会有InterruptedException
?如果你不这样做,中断位将被提升,但你永远不会看到它。如果你没有做任何会注意到线程被中断的事情,你可以将它添加到你的循环中:
for(;;)
{
// getClipboardContent();
// evaluate
// paste
if (Thread.currentThread().interrupted())
{
break;
}
}