显示系统当前时间
Posted sunda847882651
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示系统当前时间相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) {
show();//方法1
System.out.println("-------------");
showtime();//方法2
}
public static void show() {
Date date = new Date();//获取当前时间(类型是date)
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//时间的格式化,注意格式的大小写
String newdate = sdf.format(date);
System.out.println(newdate);
}
public static void showtime() {
long time=System.currentTimeMillis();//获取系统当前时间(类型是long)
SimpleDateFormat sd=new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");//时间的格式化
Date d = new Date(time);
String s = sd.format(d);
System.out.println(s);
}
以上是关于显示系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章