码迷,mamicode.com
首页 > 其他好文 > 详细

显示系统当前时间

时间:2018-08-30 21:39:33      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:format   rgs   mat   new   out   form   ati   simple   show   


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

显示系统当前时间

标签:format   rgs   mat   new   out   form   ati   simple   show   

原文地址:https://www.cnblogs.com/sunda847882651/p/9562733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!