如何在java图形用户界面中显示出当地时间
3个回答
展开全部
调用util包
插入以下代码
Calendar aa = Calendar.getInstance();
int hour = aa.get(Calendar.HOUR_OF_DAY);
int m = aa.get(Calendar.MINUTE);
int s = aa.get(Calendar.SECOND);
hour,m,s分别是小时,分钟,秒
Date d = aa.getTime();
String day = d.toLocaleString();
day是日期
图形界面增加一个文本框,把上面字串配好放进去就可以了
插入以下代码
Calendar aa = Calendar.getInstance();
int hour = aa.get(Calendar.HOUR_OF_DAY);
int m = aa.get(Calendar.MINUTE);
int s = aa.get(Calendar.SECOND);
hour,m,s分别是小时,分钟,秒
Date d = aa.getTime();
String day = d.toLocaleString();
day是日期
图形界面增加一个文本框,把上面字串配好放进去就可以了
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
展开全部
import javax.swing.*;
import java.util.*;
import java.text.SimpleDateFormat;
public class Test extends JFrame{
private JLabel label = new JLabel();//用于显示时间
private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public static void main(String[] args){
Test t = new Test();
while(true){
t.showTime();
try{
Thread.sleep(1000);
}catch(Exception e){
e.printStackTrace();}}}
public Test(){
this.setTitle("电子钟");
this.setSize(200,200);
this.add(label);
this.setVisible(true);
}
private void showTime(){
String s = sdf.format(new Date());
label.setText(s);}}
这是一个完整的例子,如果你的程序还还做其他的工作,那么你就不应该用这么死循环的方式,而是应该采用一个单独的线程来定时刷新时间。希望对你有帮助。
import java.util.*;
import java.text.SimpleDateFormat;
public class Test extends JFrame{
private JLabel label = new JLabel();//用于显示时间
private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public static void main(String[] args){
Test t = new Test();
while(true){
t.showTime();
try{
Thread.sleep(1000);
}catch(Exception e){
e.printStackTrace();}}}
public Test(){
this.setTitle("电子钟");
this.setSize(200,200);
this.add(label);
this.setVisible(true);
}
private void showTime(){
String s = sdf.format(new Date());
label.setText(s);}}
这是一个完整的例子,如果你的程序还还做其他的工作,那么你就不应该用这么死循环的方式,而是应该采用一个单独的线程来定时刷新时间。希望对你有帮助。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
JLabel timeLabel = new JLabel();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//格式化时间
String s = sdf.format(new Date());
Thread.sleep(1000);
timeLabel.setText(s);
用线程添加
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//格式化时间
String s = sdf.format(new Date());
Thread.sleep(1000);
timeLabel.setText(s);
用线程添加
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询