java 怎么把日期格式化时间_java 日期格式化

DateFormat DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间。

SimpleDateFormat SimpleDateFormat 是一个以与语言环境有关的方式来格式化和解析日期的具体类。

DateTimeFormatter 对 LocalDateTime进行格式化

Date date = newDate();

date.setYear(118);//2018

date.setMonth(8);//9

date.setDate(8);

date.setHours(8);

date.setMinutes(8);

date.setSeconds(8);//d.setTime(1470230414353l);

System.out.println(date);//Sat Sep 08 08:08:08 CST 2018

DateFormat

String dateStr =DateFormat.getDateInstance().format(date);

System.out.println(dateStr);//2018-9-8

dateStr=DateFormat.getDateInstance(DateFormat.DEFAULT).format(date);

System.out.println(dateStr);//2018-9-8

dateStr=DateFormat.getDateInstance(DateFormat.FULL).format(date);

System.out.println(dateStr);//2018年9月8日 星期六

dateStr=DateFormat.getDateInstance(DateFormat.MEDIUM).format(date);

System.out.println(dateStr);//2018-9-8

dateStr=DateFormat.getDateInstance(DateFormat.SHORT).format(date);

System.out.println(dateStr);//18-9-8

SimpleDateFormat

SimpleDateFormat format= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

dateStr=format.format(date);

System.out.println(dateStr);//2018-09-08 20:08:08

字符串解析为Date

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

Date endDate = sdf.parse("2018-08-08");

System.out.println(endDate);//Wed Aug 08 00:00:00 CST 2018

DateTimeFormatter

//利用DateTimeFormatter进行 LocalDateTime与String互转

{//LocalDateTime转String(LocalDate,LocalTime类似)

DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");

LocalDateTime localDateTime=LocalDateTime.now();

String localDateTimeStr=dtf.format(localDateTime);

System.out.println("LocalDateTime转成String类型的时间:" + localDateTimeStr);//2020-06-01 13:23:32

System.out.println("LocalDateTime转成String类型的时间:" + localDateTime.toString());//2020-06-01T13:23:32.430

}

{//String转LocalDateTime(LocalDate,LocalTime类似)

DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");

LocalDateTime localDateTime= LocalDateTime.parse("2018-06-01 10:12:05", dtf);

System.out.println("String类型的时间转成LocalDateTime:" + localDateTime);//2018-06-01T10:12:05

}

日期和时间模式表达方法

在使用SimpleDateFormat的时候,需要通过字母来描述时间元素,并组装成想要的日期和时间模式。常用的时间元素和字母的对应表如下:

941b2eddbbfc49c9744219b2eb6097b0.png

模式字母通常是重复的,其数量确定其精确表示。如下表是常用的输出格式的表示方法。

65de865a417c6b9b6689c5d4029f30cd.png

注:

200601 v1.3 增加DateTimeFormatter

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>