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));
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>