欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

日期时间与字符串互相转换(Java8)

程序员文章站 2022-04-03 22:28:28
...
项目中需要对时间日期进行格式转换, 本人今天就遇到了转换日期格式的问题.
  • 一开始 对于时间与字符串之间的转换第一个想法是 使用 SimpleDateFormat 类进行转换, 但是这个类是线程不安全的,用在分布式项目当中很容易出现问题
  • 偶然间看到 java8 中新增的一个时间转换类 DateTimeFormatter, 在阿里巴巴开发手册上也建议使用这个类去做时间格式的转换,因为他是线程安全的.
  • 接下来开始撸代码
    测试代码:
public static DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
	public static void main(String[] args) {
		LocalDateTime date = LocalDateTime.now();  //获取当前时间
		String format = date.format(dateTimeFormatter); //进行对应的格式转换
		System.out.println(format); //输出xxxx-xx-xx
		LocalDateTime localDateTime = LocalDateTime.parse("2019-03-11",dateTimeFormatter); //直接报错
		System.out.println(localDateTime);
	}

在测试上面一段代码时报错了

Caused by: java.time.DateTimeException: Unable to obtain LocalTime from TemporalAccessor: {},ISO resolved to 2019-03-11 of type java.time.format.Parsed
	at java.time.LocalTime.from(LocalTime.java:409)
	at java.time.LocalDateTime.from(LocalDateTime.java:457)
	... 4 more

后来查阅资料一看:
原来 LocalDate专门处理日期LocalTime专门处理时间LocalDateTime包含了日期和时间, 这三个类分别处理不同是日期时间格式,所以才导致上面出错.
解决方案很简单: 只需要把上面 LocalDateTime 改成 LocalDate 就不会报错啦

项目中遇到的坑,在此记录一下.