Java 现代化日期时间api使用教程
csdh11 2025-03-12 13:39 2 浏览
简介
在 Java 中,处理日期和时间对于许多应用程序都是必不可少的。Java 随着时间的推移而发展,随着 Java 8 的引入,引入了 java.time 包,为日期和时间操作提供了更现代、更全面的API。
旧版 java.util.Date 类(Java 8 之前)
在 Java 8 之前,Java 使用 java.util.Date 类来表示日期和时间。然而,它存在许多设计问题,并且不易于使用(例如,易变性、日期和时间之间的混淆)。
使用java.util.Date的示例
import java.util.Date;
public class DateExample {
public static void main(String[] args) {
// Create a new Date object with the current date and time
Date date = new Date();
// Print the current date and time
System.out.println("Current Date and Time: " + date);
// Create a Date object with a specific time (milliseconds since epoch)
Date specificDate = new Date(2025, 2, 7); // Deprecated way of creating Date (not recommended)
System.out.println("Specific Date: " + specificDate);
// Get the time in milliseconds since epoch
long timeMillis = date.getTime();
System.out.println("Milliseconds since epoch: " + timeMillis);
}
}
现代 java.time 类(Java 8 及更高版本)
LocalDate – 表示不带时间的日期(年、月、日)
只需要日期(不需要时间或时区)时使用此类
import java.time.LocalDate;
public class LocalDateExample {
public static void main(String[] args) {
// Current date
LocalDate currentDate = LocalDate.now();
System.out.println("Current Date: " + currentDate);
// Specific date
LocalDate specificDate = LocalDate.of(2025, 2, 7);
System.out.println("Specific Date: " + specificDate);
// Getting date information
System.out.println("Year: " + currentDate.getYear());
System.out.println("Month: " + currentDate.getMonth());
System.out.println("Day of Month: " + currentDate.getDayOfMonth());
}
}
- 获取当前日期并添加一天
LocalDate tomorrow = LocalDate.now().plusDays(1);
- 获取当前日期并减去一个月
LocalDate previousMonthSameDay = LocalDate.now().minus(1, ChronoUnit.MONTHS);
- 解析日期 2016-06-12 并分别获得星期几和第几个月份。返回值:第一个是一个表示 DayOfWeek 的对象,而第二个是一个表示月份序数的 int
DayOfWeek sunday = LocalDate.parse("2016-06-12").getDayOfWeek();
int twelve = LocalDate.parse("2016-06-12").getDayOfMonth();
- 测试某个日期是否是闰年
boolean leapYear = LocalDate.now().isLeapYear();
- 确定一个日期与另一个日期的关系是发生在另一个日期之前还是之后
boolean notBefore = LocalDate.parse("2016-06-12")
.isBefore(LocalDate.parse("2016-06-11"));
boolean isAfter = LocalDate.parse("2016-06-12")
.isAfter(LocalDate.parse("2016-06-11"));
- 可以从给定日期获得日期边界
LocalDateTime beginningOfDay = LocalDate.parse("2016-06-12").atStartOfDay();
LocalDate firstDayOfMonth = LocalDate.parse("2016-06-12")
.with(TemporalAdjusters.firstDayOfMonth());
LocalTime – 表示不带日期或时区的时间(小时、分钟、秒、纳秒)
import java.time.LocalTime;
public class LocalTimeExample {
public static void main(String[] args) {
// Current time
LocalTime currentTime = LocalTime.now();
System.out.println("Current Time: " + currentTime);
// Specific time
LocalTime specificTime = LocalTime.of(14, 30, 15);
System.out.println("Specific Time: " + specificTime);
// Getting time information
System.out.println("Hour: " + currentTime.getHour());
System.out.println("Minute: " + currentTime.getMinute());
System.out.println("Second: " + currentTime.getSecond());
}
}
- 解析字符串创建 LocalTime
LocalTime sixThirty = LocalTime.parse("06:30");
- 工厂方法也可用于创建 LocalTime
LocalTime sixThirty = LocalTime.of(6, 30);
- 联合 plus 方法一起使用
LocalTime sevenThirty = LocalTime.parse("06:30").plus(1, ChronoUnit.HOURS);
- 获取小时数
int six = LocalTime.parse("06:30").getHour();
- 检查特定时间是在另一个特定时间之前还是之后
boolean isbefore = LocalTime.parse("06:30").isBefore(LocalTime.parse("07:30"));
- 通过 LocalTime 类中的常量获取一天的最大、最小和中午时间
LocalTime maxTime = LocalTime.MAX
// 输出: 23:59:59.99
LocalDateTime – 表示日期和时间,但不包含时区
import java.time.LocalDateTime;
public class LocalDateTimeExample {
public static void main(String[] args) {
// Current date and time
LocalDateTime currentDateTime = LocalDateTime.now();
System.out.println("Current Date and Time: " + currentDateTime);
// Specific date and time
LocalDateTime specificDateTime = LocalDateTime.of(2025, 2, 7, 14, 30);
System.out.println("Specific Date and Time: " + specificDateTime);
}
}
- 使用 parse 解析字符串创建日期时间
LocalDateTime.parse("2015-02-20T06:30:00");
- plusDays 添加天数
localDateTime.plusDays(1);
- minusHours 减小时数
localDateTime.minusHours(2);
- 获取月份
localDateTime.getMonth();
ZonedDateTime – 表示带时区的日期和时间
当需要考虑时区(例如 UTC、PST 等)时使用此类
import java.time.ZonedDateTime;
import java.time.ZoneId;
public class ZonedDateTimeExample {
public static void main(String[] args) {
// Current date and time in a specific timezone
ZonedDateTime zonedDateTime = ZonedDateTime.now(ZoneId.of("America/New_York"));
System.out.println("Current Date and Time in New York: " + zonedDateTime);
// Specific date and time in a timezone
ZonedDateTime specificZonedDateTime = ZonedDateTime.of(2025, 2, 7, 14, 30, 0, 0, ZoneId.of("Europe/London"));
System.out.println("Specific Date and Time in London: " + specificZonedDateTime);
}
}
- 获取所有可用的时区
Set allZoneIds = ZoneId.getAvailableZoneIds();
- 使用 parse 方法解析特定时区的日期时间
ZonedDateTime.parse("2015-05-03T10:15:30+01:00[Europe/Paris]");
Instant – 表示 UTC 中的某个时间点(时间戳)
此类用于时间戳,即自 Unix 纪元 (1970-01-01T00:00:00Z) 以来的秒数或毫秒数
import java.time.Instant;
public class InstantExample {
public static void main(String[] args) {
// Current timestamp
Instant currentInstant = Instant.now();
System.out.println("Current Timestamp: " + currentInstant);
// Convert Instant to milliseconds since epoch
long millisecondsSinceEpoch = currentInstant.toEpochMilli();
System.out.println("Milliseconds since epoch: " + millisecondsSinceEpoch);
}
}
Duration 和 Period - 测量两个 java.time 对象之间的时间
- Duration:用于以秒和纳秒为单位测量时间
- Period:用于测量年、月、日的时间
import java.time.Duration;
import java.time.LocalDateTime;
public class DurationExample {
public static void main(String[] args) {
LocalDateTime startTime = LocalDateTime.of(2025, 2, 7, 14, 0, 0);
LocalDateTime endTime = LocalDateTime.of(2025, 2, 7, 16, 0, 0);
Duration duration = Duration.between(startTime, endTime);
System.out.println("Duration: " + duration.toHours() + " hours");
}
}
- Period 的用法
int five = Period.between(initialDate, finalDate).getDays();
格式化和解析日期
java.time.format.DateTimeFormatter 类用于格式化和解析日期和时间
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class DateFormatExample {
public static void main(String[] args) {
// Formatting
LocalDate date = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String formattedDate = date.format(formatter);
System.out.println("Formatted Date: " + formattedDate);
// Parsing
String dateString = "2025-02-07";
LocalDate parsedDate = LocalDate.parse(dateString, formatter);
System.out.println("Parsed Date: " + parsedDate);
}
}
在传统日期和 java.time 之间转换
将 java.util.Date 转换为 java.time.LocalDate
import java.util.Date;
import java.time.LocalDate;
import java.time.ZoneId;
public class ConvertDateExample {
public static void main(String[] args) {
Date legacyDate = new Date();
LocalDate localDate = legacyDate.toInstant().atZone(ZoneId.systemDefault()).toLocalDate();
System.out.println("Converted LocalDate: " + localDate);
}
}
将 java.time.LocalDate 转换为 java.util.Date
import java.time.LocalDate;
import java.time.ZoneId;
import java.util.Date;
public class ConvertLocalDateExample {
public static void main(String[] args) {
LocalDate localDate = LocalDate.now();
Date legacyDate = Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
System.out.println("Converted java.util.Date: " + legacyDate);
}
}
相关推荐
- 最具标志性的电影服饰
-
在1933年的电影《晚宴》中,一袭白色斜裁缎质礼服和一头染成银灰色的卷发将珍·哈露变成了片中孤独骄傲的凯蒂·帕卡德(KittyPackard)。这条白色礼服风靡一时,与它类似的款式统称为”珍·哈露式...
- 呼吸系统及其他相关疾病英文词汇
-
allergic/alls:rd3ik/a.过敏的同根alergyn.辻敏症allergenn.变应原(引起过敏反应的物质)...
- python实现微信群消息自动转发简明教程
-
基本思路是,用Python模拟微信网页版登陆,接收到群里消息后,对文本、图片、分享等各类消息类型分别处理,并转发至其他群。主要源头是使用itchat,itchat是一个开源的微信个人号接口,pyt...
- python实践——如何批量向好友发送消息,亲测有效!
-
今天为大家介绍如何像指定好友或微信群批量,一共两个Python模块,第一个是itchat,...
- 用python分析你的朋友圈,很好玩~
-
设计喵的内心OS:我一脸懵逼点进来,一脸懵逼走出去,你说了什么?事情是这么来的,我看到有朋友在做朋友圈的电子书,也想自己研究一下,发现原来有个itchart这个微信第三方API可以读取微信数据,抱着好...
- 探索Python技术在电脑端自动化中:从群发消息到智能朋友圈秒赞
-
一、技术革新与基础库的安装首先,确保Python环境已如诗如画般配置完毕,随后安装那些将赋予我们魔力的第三方库:...
- 使用Python实现微信电脑端自动化:群发消息、朋友圈点赞与秒赞
-
一、技术准备与基础库安装首先,确保Python环境已正确配置,随后安装必要的第三方库:...
- Python 查看微信撤回的消息(完整代码)
-
看到了一个基于python的微信开源库:itchat,玩了一天,做了一个程序,把私聊撤回的信息可以收集起来并发送到个人微信的文件传输助手,包括:...
- 用 Python 玩转微信就是这么简单
-
前言wxpy在itchat的基础上,通过大量接口优化提升了模块的易用性,并进行丰富的功能扩展。用来干啥一些常见的场景控制路由器、智能家居等具有开放接口的玩意儿...
- Python开源项目合集(第三方平台)
-
wechat-python-sdk-wechat-python-sdk微信公众平台Python开发包http://wechat-python-sdk.readthedocs.org/,非官方...
- 78行Python代码帮你复现微信撤回消息!
-
来源:悟空智能科技本文约700字,建议阅读5分钟。本文基于python的微信开源库itchat,教你如何收集私聊撤回的信息。...
- 女朋友老喜欢撤回消息?看我如何利用Python识破她的心理
-
一、pipInstallitchat既然都用python解决问题了,第一步当然是明确用什么库啦,直接执行pipinstallitchat:...
- 打游戏老是被女朋友骚扰怎么办?教你用Python智能回复消息
-
Python中itchat模块对于操作微信来说是个福音,今天,我们就用Python实现微信自动回复,同时调用图灵机器人,实现智能回复。具体代码如下:#导入...
- 一周热门
- 最近发表
- 标签列表
-
- mydisktest_v298 (34)
- document.appendchild (35)
- 头像打包下载 (61)
- acmecadconverter_8.52绿色版 (39)
- word文档批量处理大师破解版 (36)
- server2016安装密钥 (33)
- mysql 昨天的日期 (37)
- parsevideo (33)
- 个人网站源码 (37)
- centos7.4下载 (33)
- mysql 查询今天的数据 (34)
- intouch2014r2sp1永久授权 (36)
- 先锋影音源资2019 (35)
- jdk1.8.0_191下载 (33)
- axure9注册码 (33)
- pts/1 (33)
- spire.pdf 破解版 (35)
- shiro jwt (35)
- sklearn中文手册pdf (35)
- itextsharp使用手册 (33)
- 凯立德2012夏季版懒人包 (34)
- 反恐24小时电话铃声 (33)
- 冒险岛代码查询器 (34)
- 128*128png图片 (34)
- jdk1.8.0_131下载 (34)