位置:首页 > 软件操作教程 > 编程开发 > Java > 问题详情

Java 线程转换日期时间对象和字符串

提问人:刘旭39发布时间:2020-11-28

SimpleDateFormat不是线程安全的,因此在Java 8中引入了新的类 java.time.format.DateTimeFormatter类,用于解析和格式化日期时间。DateTimeFormattet是线程安全的,也可以完成字符串与日期时间对象的相互转换。

import java.text.DateFormat;

import java.time.LocalDate;

import java.time.LocalDateTime;

import java.time.format.DateTimeFormatter;

//SimpleDateFormat类

public class DateTimeFormattterDemo{

public static void main(String[] args) {

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

LocalDateTime time = LocalDateTime.parse("2020-12-03 10:00:00",formatter);

System.out.println("日期时间为:"+formatter.format(time));

}

}

U4V_1LA0L_1L3{V1SO7WEG3.png

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部