码迷,mamicode.com
首页 > 编程语言 > 详细

Java中获取当前时间并格式化

时间:2018-04-09 14:54:15      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:方式   for   simple   get   格式   格式化   calendar   led   system   

主要有两种方式,代码如下:

//使用Calendar
Calendar now = Calendar.getInstance();
System.out.println("年:" + now.get(Calendar.YEAR));
System.out.println("月:" + (now.get(Calendar.MONTH) + 1));
System.out.println("日:" + now.get(Calendar.DAY_OF_MONTH));
System.out.println("时:" + now.get(Calendar.HOUR_OF_DAY));
System.out.println("分:" + now.get(Calendar.MINUTE));
System.out.println("秒:" + now.get(Calendar.SECOND));
//使用Date Date d = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); System.out.println("当前时间:" + sdf.format(d));

Java中获取当前时间并格式化

标签:方式   for   simple   get   格式   格式化   calendar   led   system   

原文地址:https://www.cnblogs.com/convict/p/8759014.html

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