如何获取 Java 中的当前日期?直接获取当前日期:LocalDate now = LocalDate.now()获取特定部分:year = now.getYear(), month = now.getMonthValue(), day = now.getDayOfMonth()获取时分秒:hour = now.getHour(), minute = now.getMinute(), second = now.getSecond()获取时区:ZoneId zoneId = now.getZone

如何在 Java 中获取当前日期
直接获取当前日期
LocalDate now = LocalDate.now();
获取当前日期的特定部分
// 获取年月日 int year = now.getYear(); int month = now.getMonthValue(); int day = now.getDayOfMonth(); // 获取时分秒 int hour = now.getHour(); int minute = now.getMinute(); int second = now.getSecond(); // 获取时区 ZoneId zoneId = now.getZone();
格式化当前日期
立即学习“Java免费学习笔记(深入)”;
// 使用 SimpleDateFormat 格式化日期
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(now);获取当前日期的毫秒数
// Instant 类表示从 1970 年 1 月 1 日午夜 (UTC) 开始的秒数和纳秒 Instant instant = Instant.now(); // 获取从 Epoch 开始的毫秒数 long milliseconds = instant.toEpochMilli();
获取当前日期的纪元日
// JulianDay 类表示从儒略历开始的纪元日数 JulianDay julianDay = JulianDay.now(); // 获取纪元日数 double julianDayNumber = julianDay.getDayNumber();











