这篇文章主要介绍了Java日期与时间类原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
基础知识
Date 的用法
// 获取一个 Date 对象, 即表示现在的时刻 Date date = new Date(); // 获取 TimeStamp long timestamp = date.getTime(); // timestamp 生成 Date date = new Date(timestamp); // 转换为默认格式的字符串 String dateString = date.toString(); // 按照指定格式转换 SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); dateString = simpleDateFormat.format(date); // 按照指定格式字符串解析为 Date date = simpleDateFormat.parse(dateString);
Calendar 的用法
// 获取一个 Calendar Calendar calendar = Calendar.getInstance(); // 获取今天是本月的第几天 int day = calendar.get(Calendar.DAY_OF_MONTH); // 设置为指定时间 calendar.set(Calendar.DAY_OF_MONTH, 1); // 转换为 Date Date date = calendar.getTime(); // 转换为 timestamp long timestamp = calendar.getTimeInMillis();
LocalDateTime 的用法
// 获取一个 LocalDateTime LocalDateTime localDateTime = LocalDateTime.now(); // 获取一个指定的 LocalDateTime, 需要注意月份从 1 开始而非 0, 所以 12 月用 12 localDateTime = LocalDateTime.of(2018, 12, 12, 21, 36, 36); // LocalDateTime 格式化为指定格式 DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); String localDateTimeString = dateTimeFormatter.format(localDateTime); // 按照指定格式解析 LocalDateTime, 需要注意这里 DateTimeFormatter 是作为参数参入 localDateTime = LocalDateTime.parse(localDateTimeString, dateTimeFormatter); // 减去一天, 需要注意该对象是不可变的 localDateTime = localDateTime.minusDays(1); // 小时设置为 12 点 localDateTime = localDateTime.withHour(12); // 设置为本月的第一天 localDateTime = localDateTime.withDayOfMonth(1); // 设置为本月的最后一天, 注意这里是 TemporalAdjusters 而不是 TemporalAdjuster localDateTime = localDateTime.with(TemporalAdjusters.lastDayOfMonth()); // 判断两个 LocalDateTime 的先后 boolean before = localDateTime.isBefore(LocalDateTime.now()); // 计算两个 LocalDate 相差的天数 Period period = LocalDate.now().until(LocalDate.of(2019, 1, 1)); long days = period.getDays(); // 计算两个 LocalDateTime 相差的天数, 可能为负数 days = localDateTime.until(LocalDateTime.now(), ChronoUnit.DAYS); // 距离 EpochTime 的天数 days = LocalDate.now().toEpochDay(); // LocalDateTime 无法与 timestamp 进行转换, 因为它没有时区的概念
ZonedDateTime 相当于 LocalDateTime 加上了一个 ZoneId
Instant 可以理解为 TimeStamp, 也就是说相当于一个 Long 的封装类
// 从 LocalDateTime 获取 ZonedDateTime ZonedDateTime zonedDateTime = LocalDateTime.now().atZone(ZoneId.of("Asia/Shanghai")); // 从 Instant 获取 ZonedDateTime zonedDateTime = Instant.now().atZone(ZoneId.systemDefault()); // 获取指定的 Instant, 需要注意 System.currentTimeMillis() 返回的是毫秒, 而 TimeStamp 是秒 Instant instant = Instant.ofEpochSecond(System.currentTimeMillis() / 1000); // TimeStamp 获取 LocalDateTime LocalDateTime localDateTime = LocalDateTime.ofEpochSecond( // 获取当前的时间戳(timestamp) instant.getEpochSecond(), // 毫秒 0, // 获取系统的 ZoneOffset, 即时区偏移 OffsetDateTime.now().getOffset()); // 星期相关的操作 LocalDate now = LocalDate.now(); LocalDate sundayDate = now.with(DayOfWeek.SUNDAY); int sundayValue = sundayDate.getDayOfWeek().getValue();
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍JAVA时间日期处理类实例,包括了JAVA时间日期处理类实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了JAVA时间日期处理类,主要用来遍历两个日期之间的每一天。分享给大家供大家参考。具体如下: 希望本文所述对大家的java程序设计有所帮助。
日期与时间 避免使用 DateTime,除非你确实需要处理历法改革(儒略/格里历的改革),此时通过设置 start 参数来明确你的意图。 # 差 - 使用 DateTime 表示当前时间 DateTime.now # 好 - 使用 Time 表示当前时间 Time.now # 差 - 使用 DateTime 表示近现代日期 DateTime.iso8601('2016-06-29') # 好 -
日期与时间 手动设定 可手动设定年/月/日/时/分/秒(12小时制的AM / PM)。 透过因特网设定 经由因特网自动取得日期、时间。 网络联机的详细说明,请参阅(网络设定) > [Infrastructure模式]。 提示 将(设定)>(主题设定) > [颜色]设定为[每月]时,将会于变更[日期与时间]的月份后,自动改变背景颜色。
主要内容:Date 类,Calendar 类在 Java 中获取当前时间,可以使用 java.util.Date 类和 java.util.Calendar 类完成。其中, Date 类主要封装了系统的日期和时间的信息,Calendar 类则会根据系统的日历来解释 Date 对象。下面详细介绍这两个类的具体使用。 Date 类 Date 类表示系统特定的时间戳,可以精确到毫秒。Date 对象表示时间的默认顺序是星期、月、日、小时、分、秒、年
这是我的用户类,我要在我的数据库中保存符合ISO的日期时间。 这是我的球衣控制器: 我如何使用像泽西岛这样的日期时间格式?是否可以发送一个datatime并自动创建Java8日期时间对象?
问题内容: 我有一个脚本,需要在脚本的不同行执行以下命令: 在我的陈述中,我有以下内容: 我收到以下错误: 如果我将语句的顺序更改为: 我收到以下错误: 如果我再次将语句更改为: 我收到以下错误: 这是怎么回事,我怎么都可以工作? 问题答案: 您的麻烦是,您有一些代码希望对 模块 进行引用,而其他代码希望对类进行引用 。 显然,不能两者兼有。 当您这样做时: 您首先要设置为对该类的引用,然后立即将