【Java LocalDateTime】LocalDateTime获取时间信息、格式化、转换为数字时间戳
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.time.temporal.ChronoUnit;
public class LocalDateTimeExample {
public static void main(String[] args) {
// 获取当前的日期时间
LocalDateTime now = LocalDateTime.now();
System.out.println("当前日期时间: " + now);
// 获取特定日期时间
LocalDateTime specificTime = LocalDateTime.of(2023, 4, 1, 12, 30, 45);
System.out.println("特定日期时间: " + specificTime);
// 格式化日期时间
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formatted = now.format(formatter);
System.out.println("格式化日期时间: " + formatted);
// 将日期时间转换为时间戳
long timestamp = now.toEpochSecond(ChronoUnit.SECONDS);
System.out.println("当前日期时间的秒时间戳: " + timestamp);
}
}
这段代码演示了如何在Java中使用LocalDateTime
类来获取当前日期时间、特定日期时间、对日期时间进行格式化以及转换为UNIX时间戳。
评论已关闭