时间日期类总结
时间日期类-Date构造方法
Date d1 = new Date();//把当前时间封装成一个Date对象
Date d2 = new Date(1000);//把从时间远点开始,过了指定毫秒的时间,封装成一个Date对象,需要考虑时差问题。
d1代表的时间为:本地时间
d2代表的时间为:1790年1月1日00:08:01
时间日期类-SimpleDateFormat
Date date = new Date();
SimpleDateFormate sdf = new SimpleDateFormate("yyyy二货MM三货dd空格HH时mm分ss秒");
在格式字符串中
y代表年 M代表月 d代表日 H代表小时 m代表分钟 s代表秒
这里严格要求大小写,比如月和分钟是M,m。
中间的分隔字符可以写成除了格式字符之外的任意字符。
SimpleDateFormate sdf = new SimpleDateFormate("yyyy-MM-dd HH:mm:sss");
Date date = sdf.parse("2020-01-01 01:01:01");//将字符串解析为Date
System.out.println(date);
String res = simpleDateFormat.format(date);//将Date对象转化成字符串
System.out.println(res);
在jdk8中解决的问题
在jdk7中的Date对象,如果要调整时间,并没有给出直接的方法来完成;
jdk8中的LocalDateTime对象,如果要调整时间,提供了方法来完成。
LocalDateTime对象
public static LocalDateTime now()//获取现在的时间
public static LocalDateTime of(年,月,日,时,分,秒)//自定义时间
public int getYear()//获取年
public int getMonthValue()//获取月(1-12)
public int getDayOfMonth(