显示系统当前时间

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);
}



















以上是关于显示系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章

powerbuilder 的时间函数,如何获取当前系统时间

C#如何写程序:“显示当前时间”

获取当前年份,获取当前系统时间

用js在网页上显示当前日期和时间,并显示是星期几

js获取当前的时间显示的是24小时的时间吗

如何在JSP页面中显示当前时间