JLABEL动态更新的问题
在button的addActionListener里面,每两秒更新jlabel的内容,为什么只能显示最后一次的?求教!!importstaticcshidai.Swing...
在button的addActionListener里面, 每两秒更新jlabel的内容, 为什么只能显示最后一次的?求教!!
import static cshidai.SwingConsole.run;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.concurrent.TimeUnit;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class SwingTest extends JFrame
{
public JLabel l=new JLabel();
public JPanel p=new JPanel();
public JButton b=new JButton();
public SwingTest()
{
b.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0)
{
// TODO Auto-generated method stub
for(int i=0;i<3;i++)
{
l.setText("num:"+i);
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
});
l.setText("111");
p.add(l);
p.add(b);
add(p);
}
public static void main(String[] args) throws Exception
{
SwingTest jf= new SwingTest();
run(jf, 600, 700);
}
} 展开
import static cshidai.SwingConsole.run;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.concurrent.TimeUnit;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class SwingTest extends JFrame
{
public JLabel l=new JLabel();
public JPanel p=new JPanel();
public JButton b=new JButton();
public SwingTest()
{
b.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0)
{
// TODO Auto-generated method stub
for(int i=0;i<3;i++)
{
l.setText("num:"+i);
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
});
l.setText("111");
p.add(l);
p.add(b);
add(p);
}
public static void main(String[] args) throws Exception
{
SwingTest jf= new SwingTest();
run(jf, 600, 700);
}
} 展开
1个回答
展开全部
经过我N长时间的研究,终于找到答案了,不容易啊。
以下为引用:
为什么会发生这样奇怪的现象呢?
Java Swing中,界面刷新是线程同步的,也就是说同一时间,只有一个线程能执行刷新界面的代码。如果要多次不断地刷新界面,必须在多线程中调用刷新的方法。
本例中,在buttonActionPerformed方法中多次调用了setText方法来试图刷新JLabel和JTextField的文本。buttonActionPerformed方法运行在主线程中,所以每次调用setText都是运行在主线程中,而且是顺序的执行的。在前面几次调用setText后,线程并没有退出,所以界面刷新线程不能获得执行刷新的机会。而当最后一次setText后,线程退出,界面才能执行刷新。所以我们只能看到最后一次setText的值。
因此,要解决这个问题,我们必须把buttonActionPerformed方法中的代码段放到一个单独的线程中执行。这样它就不会使线程阻塞,当每次setText后,界面刷新线程也能得到执行的机会,从而刷新界面。
所以,你的代码修改如下(只修改了actionPerformed):
@Override
public void actionPerformed(ActionEvent arg0)
{
new Thread(new Runnable(){
@Override
public void run() {
// TODO Auto-generated method stub
for(int i=0;i<3;i++)
{
l.setText("num:"+i);
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}).start();
}
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询