JAVA中JLabel动态显示时间的问题。
importjava.awt.*;importjava.text.SimpleDateFormat;importjava.util.Calendar;importjava...
import java.awt.*;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.awt.Dimension;
import javax.swing.*;
public class ATMtest extends JFrame implements Runnable{
JLabel displayArea;
String DEFAULT_TIME_FORMAT = "HH:mm:ss";
int ONE_SECOND = 1000;
public ATMtest(){
JFrame frame = new JFrame("ATM服务器");
frame.setSize(new Dimension(300,300));
frame.setLocation(470,200);
BoxLayout box = new BoxLayout(frame.getContentPane(),BoxLayout.Y_AXIS);
frame.setLayout(box);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
JPanel pl = new JPanel();
pl.add(new JLabel("欢迎使用ATM服务器"));
pl.setBackground(Color.yellow);
frame.add(pl);
JPanel pl2 = new JPanel();
pl2.add(new JLabel("当前时间:"));
pl2.setBackground(Color.RED);
frame.add(pl2);
JPanel pl3 = new JPanel();
pl3.add(displayArea);
pl3.setBackground(Color.BLUE);
frame.add(pl3);
}
public void run(){
while(true)
{
SimpleDateFormat dateFormatter = new SimpleDateFormat(DEFAULT_TIME_FORMAT);
displayArea.setText(dateFormatter.format(
Calendar.getInstance().getTime()));
try
{
Thread.sleep(ONE_SECOND);
}
catch(Exception e)
{
displayArea.setText("Error!!!");
}
}
}
public static void main(String[] args){
ATMtest frame = new ATMtest();
Thread thread1=new Thread(frame);
thread1.start();
}
}
运行的时候,pl3也就是时间显示不出来.Eclipse提示是 pl3.add(displayArea);
这句有问题. 我想知道为什么加不进去,改怎么解决? 展开
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.awt.Dimension;
import javax.swing.*;
public class ATMtest extends JFrame implements Runnable{
JLabel displayArea;
String DEFAULT_TIME_FORMAT = "HH:mm:ss";
int ONE_SECOND = 1000;
public ATMtest(){
JFrame frame = new JFrame("ATM服务器");
frame.setSize(new Dimension(300,300));
frame.setLocation(470,200);
BoxLayout box = new BoxLayout(frame.getContentPane(),BoxLayout.Y_AXIS);
frame.setLayout(box);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
JPanel pl = new JPanel();
pl.add(new JLabel("欢迎使用ATM服务器"));
pl.setBackground(Color.yellow);
frame.add(pl);
JPanel pl2 = new JPanel();
pl2.add(new JLabel("当前时间:"));
pl2.setBackground(Color.RED);
frame.add(pl2);
JPanel pl3 = new JPanel();
pl3.add(displayArea);
pl3.setBackground(Color.BLUE);
frame.add(pl3);
}
public void run(){
while(true)
{
SimpleDateFormat dateFormatter = new SimpleDateFormat(DEFAULT_TIME_FORMAT);
displayArea.setText(dateFormatter.format(
Calendar.getInstance().getTime()));
try
{
Thread.sleep(ONE_SECOND);
}
catch(Exception e)
{
displayArea.setText("Error!!!");
}
}
}
public static void main(String[] args){
ATMtest frame = new ATMtest();
Thread thread1=new Thread(frame);
thread1.start();
}
}
运行的时候,pl3也就是时间显示不出来.Eclipse提示是 pl3.add(displayArea);
这句有问题. 我想知道为什么加不进去,改怎么解决? 展开
2个回答
展开全部
初始化你的JLabel ,实例化new 就可以了。
同时你的程序有个比较严重的问题,那就是线程是否安全,swing不是线程安全的,你在一个新开的线程中更新GUI可能会报错,虽然这样的可能性很低,但是如果你要严谨的话,在你的线程中添加如下代码
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
displayArea.setText(dateFormatter.format(Calendar.getInstance().getTime()));
}
});
同时你的程序有个比较严重的问题,那就是线程是否安全,swing不是线程安全的,你在一个新开的线程中更新GUI可能会报错,虽然这样的可能性很低,但是如果你要严谨的话,在你的线程中添加如下代码
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
displayArea.setText(dateFormatter.format(Calendar.getInstance().getTime()));
}
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询