Java 線程轉(zhuǎn)換日期時(shí)間對(duì)象和字符串
SimpleDateFormat不是線程安全的,因此在Java 8中引入了新的類 java.time.format.DateTimeFormatter類,用于解析和格式化日期時(shí)間。DateTimeFormattet是線程安全的,也可以完成字符串與日期時(shí)間對(duì)象的相互轉(zhuǎn)換。
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("日期時(shí)間為:"+formatter.format(time));
}
}
點(diǎn)擊加載更多評(píng)論>>