位置:首頁 > 軟件操作教程 > 編程開發(fā) > Java > 問題詳情

Java 線程轉(zhuǎn)換日期時間對象和字符串

提問人:劉旭39發(fā)布時間:2020-11-28

SimpleDateFormat不是線程安全的,因此在Java 8中引入了新的類 java.time.format.DateTimeFormatter類,用于解析和格式化日期時間。DateTimeFormattet是線程安全的,也可以完成字符串與日期時間對象的相互轉(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("日期時間為:"+formatter.format(time));

}

}

U4V_1LA0L_1L3{V1SO7WEG3.png

繼續(xù)查找其他問題的答案?

相關視頻回答
回復(0)
返回頂部