Java中获得当前系统时间年、月、日的方法
程序员文章站
2022-04-19 19:09:30
...
1.日期测试类代码如下
package test;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import com.sun.org.apache.xerces.internal.impl.xpath.regex.ParseException;
public class DateTest {
public static void main(String[] args) throws ParseException, java.text.ParseException {
//Calendar.getInstance()是获取一个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));
System.out.println("当前时间毫秒数:" + now.getTimeInMillis());
System.out.println(now.getTime());
System.out.println("************************");
//new Date()是创建了一个date对象,默认是utc格式的,可以通过Date date=now.getTime()相互转化
Date date = new Date();
System.out.println("当前系统时间:"+date);
//格式日期转换
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateFormat = sdf.format(date);
System.out.println("格式化后的日期:" + dateFormat);
System.out.println("************************");
String time = "2020-04-22 12:22:37"; //要跟上面格式转换定义的格式一样
Date moment = sdf.parse(time);
System.out.println("字符串转成日期:" + moment);
}
}
2.控制台输出如下:
年: 2020
月: 4
日: 22
时: 12
分: 26
秒: 35
当前时间毫秒数:1587529595024
Wed Apr 22 12:26:35 GMT+08:00 2020
************************
当前系统时间:Wed Apr 22 12:26:35 GMT+08:00 2020
格式化后的日期:2020-04-22 12:26:35
************************
字符串转成日期:Wed Apr 22 12:22:37 GMT+08:00 2020
上一篇: int和Integer有什么区别?
下一篇: spring boot 缓存配置