【Java】时间工具类 —— 格式化,个性化,时间操作

在平常的编程中,经常会遇到时间的各种类型转化,避免每次都使用第三方库或者上网搜索,决定整理一下写篇博客,也是从各处收集或者让AI写的方法,应该可以涵盖平时所有的场景了。

格式化方法

  1. String format(Object time)

    • 使用默认格式 yyyy-MM-dd HH:mm:ss 将时间对象格式化为字符串。
  2. String format(Object time, String format)

    • 使用指定格式将时间对象格式化为字符串。
  3. String formatTimeAgo(String dateTime, String format)

  • 将时间差转换为个性化的时间表达方式,如“刚刚”、“1分钟前”、“1小时前”、“昨天 14:11”等,使用指定格式。
  1. String formatTimeAgo(String dateTime)
  • 使用默认格式 yyyy-MM-dd HH:mm:ss 将时间差转换为个性化的时间表达方式。

解析方法

  1. Date parseToDate(String timeStr, String format)
  • 将时间字符串解析为 Date 对象,使用指定格式。
  1. Date parseToDate(String timeStr)
  • 使用默认格式 yyyy-MM-dd HH:mm:ss 将时间字符串解析为 Date 对象。
  1. LocalDateTime parseToLocalDateTime(String timeStr, String format)
  • 将时间字符串解析为 LocalDateTime 对象,使用指定格式。
  1. LocalDateTime parseToLocalDateTime(String timeStr)
  • 使用默认格式 yyyy-MM-dd HH:mm:ss 将时间字符串解析为 LocalDateTime 对象。

时间戳方法

  1. long parseToTimestamp(String timeStr, String format, int digits)
  • 将时间字符串解析为不同位数的时间戳(10位秒级别,13位毫秒级别),使用指定格式。
  1. long parseToTimestamp(String timeStr, int digits)
  • 使用默认格式 yyyy-MM-dd HH:mm:ss 将时间字符串解析为不同位数的时间戳。
  1. long parseToTimestamp(String timeStr)
  • 使用默认格式 yyyy-MM-dd HH:mm:ss 将时间字符串解析为13位毫秒级别的时间戳。
  1. long localDateTimeToTimestamp(LocalDateTime localDateTime, int digits)
  • LocalDateTime 对象转换为不同位数的时间戳(10位秒级别,13位毫秒级别),使用系统默认时区。
  1. long localDateTimeToTimestamp(LocalDateTime localDateTime)
  • LocalDateTime 对象转换为13位毫秒级别的时间戳,使用系统默认时区。

时间差计算方法

  1. long calculateTimeDifferenceInSeconds(String startTimeStr, String endTimeStr, String format)
  • 计算两个时间字符串之间的时间差,以秒为单位,使用指定格式。
  1. long calculateTimeDifferenceInSeconds(String startTimeStr, String endTimeStr)
  • 使用默认格式 yyyy-MM-dd HH:mm:ss 计算两个时间字符串之间的时间差,以秒为单位。

当前时间和日期处理方法

  1. String getCurrentTime()

    • 获取当前时间的格式化字符串,使用默认格式 yyyy-MM-dd HH:mm:ss
  2. LocalDateTime getStartOfDay(String dateStr, String format)

    • 获取指定日期的开始时间(零点),使用指定格式。
  3. LocalDateTime getStartOfDay(String dateStr)

    • 使用默认格式 yyyy-MM-dd HH:mm:ss 获取指定日期的开始时间(零点)。
  4. LocalDateTime getEndOfDay(String dateStr, String format)

    • 获取指定日期的结束时间(23:59:59),使用指定格式。
  5. LocalDateTime getEndOfDay(String dateStr)

    • 使用默认格式 yyyy-MM-dd HH:mm:ss 获取指定日期的结束时间(23:59:59)。

具体代码

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.*;
import java.time.format.DateTimeFormatter;
import java.util.Calendar;
import java.util.Date;public class DateUtil {public final static String DATE_TIME_PATTERN = "yyyy-MM-dd HH:mm:ss";public static String format(Object time) {try {return format(time, DATE_TIME_PATTERN);} catch (Exception e) {throw new RuntimeException(e);}}/*** 时间格式化成字符串** @param time     时间* @param format 格式* @return {@link String }*/public static String format(Object time, String format) {// 检查 time 是否为 Date 类型if (time instanceof Date date) {// 如果是 Date 类型,调用 formatDate 方法return formatDate(date, format);}// 检查 time 是否为 Calendar 类型else if (time instanceof Calendar calendar) {// 如果是 Calendar 类型,调用 formatCalendar 方法return formatCalendar(calendar, format);}// 检查 time 是否为 Instant 类型else if (time instanceof Instant instant) {// 如果是 Instant 类型,调用 formatInstant 方法return formatInstant(instant, format);}// 检查 time 是否为 ZonedDateTime 类型else if (time instanceof ZonedDateTime zonedDateTime) {// 如果是 ZonedDateTime 类型,调用 formatZonedDateTime 方法return formatZonedDateTime(zonedDateTime, format);}// 检查 time 是否为 LocalDateTime 类型else if (time instanceof LocalDateTime localDateTime) {// 如果是 LocalDateTime 类型,调用 formatLocalDateTime 方法return formatLocalDateTime(localDateTime, format);}// 检查 time 是否为 Long 类型(时间戳)else if (time instanceof Long timestamp) {// 如果是 Long 类型,调用 formatTimestamp 方法return formatTimestamp(timestamp, format);}// 如果 time 类型不支持,则抛出异常else {throw new IllegalArgumentException("Unsupported time type: " + time.getClass().getName());}}private static String formatDate(Date date, String format) {SimpleDateFormat sdf = new SimpleDateFormat(format);return sdf.format(date);}private static String formatCalendar(Calendar calendar, String format) {SimpleDateFormat sdf = new SimpleDateFormat(format);return sdf.format(calendar.getTime());}private static String formatInstant(Instant instant, String format) {DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format).withZone(ZoneId.systemDefault());return formatter.format(instant);}private static String formatZonedDateTime(ZonedDateTime zdt, String format) {DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format);return zdt.format(formatter);}private static String formatLocalDateTime(LocalDateTime ldt, String format) {DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format);return ldt.format(formatter);}private static String formatTimestamp(long timestamp, String format) {SimpleDateFormat sdf = new SimpleDateFormat(format);Date date = new Date(timestamp);return sdf.format(date);}/*** 将时间字符串转换为 Date 对象* @param timeStr 时间字符串* @param format  格式化字符串* @return 转换后的 Date 对象*/public static Date parseToDate(String timeStr, String format) {// 使用 SimpleDateFormat 解析时间字符串try {SimpleDateFormat sdf = new SimpleDateFormat(format);return sdf.parse(timeStr);} catch (ParseException e) {throw new RuntimeException(e);}}public static Date parseToDate(String timeStr) {return parseToDate(timeStr, DATE_TIME_PATTERN);}/*** 将时间字符串转换为 LocalDateTime 对象* @param timeStr 时间字符串* @param format  格式化字符串* @return 转换后的 LocalDateTime 对象*/public static LocalDateTime parseToLocalDateTime(String timeStr, String format) {// 使用 DateTimeFormatter 解析时间字符串DateTimeFormatter dtf = DateTimeFormatter.ofPattern(format);return LocalDateTime.parse(timeStr, dtf);}public static LocalDateTime parseToLocalDateTime(String timeStr) {return parseToLocalDateTime(timeStr, DATE_TIME_PATTERN);}/*** 将时间字符串转换为不同位数的时间戳* @param timeStr 时间字符串* @param format  格式化字符串* @param digits    时间戳位数(10位秒级别,13位毫秒级别)* @return 转换后的时间戳*/public static long parseToTimestamp(String timeStr, String format, int digits) {// 将时间字符串解析为 Date 对象Date date = parseToDate(timeStr, format);// 获取时间戳long timestamp = date.getTime();// 根据时间戳位数进行处理if (digits == 10) {// 如果需要10位时间戳,则转换为秒级别return timestamp / 1000;} else if (digits == 13) {// 如果需要13位时间戳,则返回毫秒级别时间戳return timestamp;} else {// 其他位数不支持,抛出异常throw new IllegalArgumentException("Unsupported timestamp digits: " + digits);}}public static long parseToTimestamp(String timeStr, int digits) {return parseToTimestamp(timeStr, DATE_TIME_PATTERN, digits);}public static long parseToTimestamp(String timeStr) {// 默认 13 位时间戳return parseToTimestamp(timeStr, DATE_TIME_PATTERN, 13);}/*** 将 LocalDateTime 对象转换为时间戳* @param localDateTime LocalDateTime 对象* @param zoneId 时区 ID* @param digits 时间戳位数(10位秒级别,13位毫秒级别)* @return 转换后的时间戳*/private static long localDateTimeToTimestamp(LocalDateTime localDateTime, ZoneId zoneId, int digits) {ZonedDateTime zonedDateTime = localDateTime.atZone(zoneId);long timestamp = zonedDateTime.toInstant().toEpochMilli();if (digits == 10) {// 如果需要10位时间戳,则转换为秒级别return timestamp / 1000;} else if (digits == 13) {// 如果需要13位时间戳,则返回毫秒级别时间戳return timestamp;} else {// 其他位数不支持,抛出异常throw new IllegalArgumentException("Unsupported timestamp digits: " + digits);}}public static long localDateTimeToTimestamp(LocalDateTime localDateTime, int digits) {return localDateTimeToTimestamp(localDateTime, ZoneId.systemDefault(), digits);}public static long localDateTimeToTimestamp(LocalDateTime localDateTime) {return localDateTimeToTimestamp(localDateTime, 13);}private static Duration calculateTimeDifferenceDuration(String startTimeStr, String endTimeStr, String format) {// 将时间字符串解析为 LocalDateTime 对象LocalDateTime startTime = parseToLocalDateTime(startTimeStr, format);LocalDateTime endTime = parseToLocalDateTime(endTimeStr, format);return calculateTimeDifferenceDuration(startTime, endTime);}private static Duration calculateTimeDifferenceDuration(LocalDateTime startTime, LocalDateTime endTime) {// 计算两个时间点之间的 Durationreturn Duration.between(startTime, endTime);}/*** 计算两个时间字符串之间的时间差,以秒为单位* @param startTimeStr 开始时间字符串* @param endTimeStr 结束时间字符串* @param format 时间字符串的格式* @return 时间差的秒数*/public static long calculateTimeDifferenceInSeconds(String startTimeStr, String endTimeStr, String format) {// 计算两个时间点之间的 DurationDuration duration = calculateTimeDifferenceDuration(startTimeStr, endTimeStr, format);// 返回时间差的秒数return duration.getSeconds();}public static long calculateTimeDifferenceInSeconds(String startTimeStr, String endTimeStr) {return calculateTimeDifferenceInSeconds(startTimeStr, endTimeStr, DATE_TIME_PATTERN);}/*** 将时间差转换为个性化的时间表达方式* @param dateTime 时间字符串* @param format 时间字符串的格式* @return 个性化的时间表达方式*/public static String formatTimeAgo(String dateTime, String format) {LocalDateTime time = parseToLocalDateTime(dateTime, format);LocalDateTime now = LocalDateTime.now();Duration duration = calculateTimeDifferenceDuration(time, now);if (duration.isZero() || duration.getSeconds() < 60) {return "刚刚";} else if (duration.toMinutes() < 60) {return duration.toMinutes() + "分钟前";} else if (duration.toHours() < 24) {return duration.toHours() + "小时前";} else if (duration.toDays() == 1) {return "昨天 " + time.format(DateTimeFormatter.ofPattern("HH:mm"));} else if (duration.toDays() < 365) {return time.format(DateTimeFormatter.ofPattern("MM-dd HH:mm"));} else {return time.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));}}public static String formatTimeAgo(String dateTime) {return formatTimeAgo(dateTime, DATE_TIME_PATTERN);}/*** 获取当前时间的格式化字符串* @return 当前时间的格式化字符串*/public static String getCurrentTime() {return format(LocalDateTime.now(), DATE_TIME_PATTERN);}/*** 获取指定日期的开始时间(零点)* @param dateStr 日期字符串* @param format 日期字符串的格式* @return 指定日期的开始时间*/public static LocalDateTime getStartOfDay(String dateStr, String format) {DateTimeFormatter dtf = DateTimeFormatter.ofPattern(format);LocalDate date = LocalDate.parse(dateStr, dtf);return date.atStartOfDay();}public static LocalDateTime getStartOfDay(String dateStr) {return getStartOfDay(dateStr, DATE_TIME_PATTERN);}/*** 获取指定日期的结束时间(23:59:59.999999999)* @param dateStr 日期字符串* @param format 日期字符串的格式* @return 指定日期的结束时间*/public static LocalDateTime getEndOfDay(String dateStr, String format) {DateTimeFormatter dtf = DateTimeFormatter.ofPattern(format);LocalDate date = LocalDate.parse(dateStr, dtf);LocalTime endOfDay = LocalTime.of(23, 59, 59, 999_999_999);return date.atTime(endOfDay);}public static LocalDateTime getEndOfDay(String dateStr) {return getEndOfDay(dateStr, DATE_TIME_PATTERN);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/13609.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

TimeHelper——一个简单快捷的PHP日期时间助手类库

⏱️TimeHelper——一个简单快捷的PHP日期时间助手类库 TimeHelper 是一个简单易用的PHP时间日期助手类库,可以快速实现常用的时间日期操作,比如获取指定时间的秒数,获取友好的时间格式,判断时间范围,计算两个时间相差值,返回N小时/天/星期/月/年前或者后的时间戳等等 特性 …

tomcat--应用部署

tomcat根目录结构 Tomcat中默认网站根目录是/usr/local/apache-tomcat-8.5.100/webapps/在Tomcat的webapps目录中&#xff0c;有个非常特殊的目录ROOT&#xff0c;它就是网站默认根目录。将eshop解压后的文件放到这个/usr/local/apache-tomcat-8.5.100/webapps/ROOT中。bbs解压…

为什么要使用 eval

调用 eval 方法的原因是为了确保模型在进行预测时使用正确的配置。在训练过程中&#xff0c;某些层&#xff08;如 Dropout 层&#xff09;的行为是为了正则化而设计的&#xff0c;它们会在每次迭代中随机丢弃一些神经元的输出。而在评估模式下&#xff0c;这些层将不再随机丢弃…

Git简单理解

Git 概述 Git 是一个免费的开源的&#xff0c;分布式版本控制系统&#xff0c;可以快速高效的处理从小型到大型的各种项目 Git占地面积小&#xff0c;性能极快&#xff0c;具有廉价的本地库&#xff0c;方便的暂存区和多个工作流分支等特性 版本控制 版本控制是一种记录文件…

低耦合双写一致性方案-使用canal+MQ

需求&#xff1a;继上一篇使用xxljob实现数据的全量同步到es后&#xff0c;当数据库中新增、删除、修改数据时&#xff0c;应该对es中的对应索引库实现增量同步。 本文介绍了2种双写一致性方案&#xff0c;对其中使用MQ的方案进行了实现。 1. 方案设计 1.1 数据一致性问题分析…

2024.5.21欧洲商会网络安全大会(上海)

本次安策将将参加超越 2024 年网络安全大会&#xff1a;驾驭数字前沿大会(上海)&#xff0c;2024年5月21日&#xff0c;期待和欢迎新老朋友在大会上会面和交流。 时间 2024-05-21 |14:00 - 16:30 场地&#xff1a; 上海瑞士大酒店 地址&#xff1a; 3rd Floor&#xff0c; Davo…

iOS 17.5 release notes

文章目录 iOS 17.5 更新恢复了多年前删除的一些图片新增彩虹壁纸欧盟用户可直接从网站下载应用新增了追踪通知改进 Apple News图书应用"阅读目标"设计更新颜色匹配的播客小部件Web浏览器安全权限的访问下一代“Beats Pill”扬声器在iOS 17.5代码中得到确认店内Vision…

【C++】 单例设计模式的讲解

前言 在我们的学习中不免会遇到一些要设计一些特殊的类&#xff0c;要求这些类只能在内存中特定的位置创建对象&#xff0c;这就需要我们对类进行一些特殊的处理&#xff0c;那我们该如何解决呢&#xff1f; 目录 1. 特殊类的设计1.1 设计一个类&#xff0c;不能被拷贝&#xf…

人际关系与情景模拟

面试中的同事 1、着眼合作多理解 2、立足长远多承担 3、分工协作多沟通 4、相互学历促成长 面试中的领导 1、尊重领导权威 2、适应领导风格 3、服从领导安排 4、请示领导意见 5、完成领导任务 6、汇报工作结果 面试中的下属&#xff08;面试考的很少&#xff0c;毕…

@Configuration注解使用详解【记录】

Configuration注解 1、主要作用&#xff1a; 标识配置类&#xff1a;Configuration用于标识一个类是配置类&#xff0c;这是Spring Boot应用程序中的关键组件之一&#xff0c;用于定义和管理Bean的创建和配置&#xff08;用于取代bean.xml配置文件注册bean对象&#xff09;。通…

Android Studio 与 Gradle 及插件版本兼容性

Android Studio 开始新项目时&#xff0c;会自动创建其中部分文件&#xff0c;并为其填充合理的默认值。 项目文件结构布局&#xff1a; 一、Android Gradle 及插件作用&#xff1a; Android Studio 构建系统以 Gradle 为基础&#xff0c;并且 Android Gradle 插件 (AGP) 添加…

代码随想录阅读笔记-动态规划【不同路径 II】

题目 一个机器人位于一个 m x n 网格的左上角 &#xff08;起始点在下图中标记为“Start” &#xff09;。 机器人每次只能向下或者向右移动一步。机器人试图达到网格的右下角&#xff08;在下图中标记为“Finish”&#xff09;。 现在考虑网格中有障碍物。那么从左上角到右…

全球视频会议软件巨头Zoom,率先引入后量子端到端加密

5月21日&#xff0c;Zoom Video Communications公司宣布&#xff0c;后量子端到端加密&#xff08;E2EE&#xff09;现已面向全球推出&#xff0c;适用于Zoom Workplace。目前&#xff0c;Zoom已将该功能加入Zoom Meetings&#xff0c;稍后将扩展至Zoom Phone和Zoom Rooms。 图…

视频批量裁剪助手:一键式高效缩小视频尺寸,极速提升工作效率的必备神器!

视频已经成为我们日常生活和工作中不可或缺的一部分。无论是个人vlog、企业宣传片&#xff0c;还是教学视频、广告素材&#xff0c;视频都承载着大量的信息和情感。然而&#xff0c;很多时候&#xff0c;我们手中的视频尺寸并不符合我们的需求&#xff0c;这时&#xff0c;一款…

He3DB MySQL计算下推优化设计

前言 计算下推是数据库优化器优化查询性能的一种常见手段&#xff0c;早期的数据库系统提及的计算下推一般是指谓词下推&#xff0c;其 理论源自关系代数理论。 2000 年以后&#xff0c;随着 Oracle RAC 的盛行以及一众开源分布式数据库的崛起&#xff0c;存算分离的概 念逐步…

Denodo 数据虚拟化

Denodo是一家专注于数据虚拟化领域的软件公司&#xff0c;其核心产品Denodo Platform提供了一套全面的数据集成和数据服务解决方案。以下是关于Denodo的介绍、工作原理、应用场景以及在不同行业的应用比较&#xff1a; Denodo介绍 Denodo Platform通过数据虚拟化技术&#xf…

前端常用网站合集

常用网站 Node.js&#xff1a;https://nodejs.cn/Npm&#xff1a;https://www.npmjs.com/MDN&#xff1a;https://developer.mozilla.org/zh-CN/前端兼容性自查工具&#xff1a;https://caniuse.com/Vue3&#xff1a;https://cn.vuejs.org/Vue2&#xff1a;https://v2.cn.vuej…

Linux中的正则表达式

在说正则表达式之前再加几个小知识 1、输出重定向&#xff1a; 标准输出&#xff1a;是将信息输出在终端上 标准错误输出&#xff1a;在执行命令的过程中所产生的错误信息也是输出在终端上的 标准输出&#xff1a;是从键盘输入的 1.1、标准输出重定向 作用&#xff1a;将本来要…

/etc/passwd与/etc/group内容详解

/etc/passwd 在Linux系统中&#xff0c;/etc/passwd是一个文本文件&#xff0c;用于存储系统中的用户账号信息。该文件的每一行代表一个用户账号&#xff0c;包含以下七个字段&#xff0c;每个字段由冒号分隔&#xff1a; 1. 用户名&#xff08;Username&#xff09;&#xf…

k8s 声明式资源管理

一、资源配置清单的管理 1.1 查看资源配置清单 声明式管理方法&#xff1a; 1.适合于对资源的修改操作 2.声明式资源管理方法依赖于资源配置清单文件对资源进行管理 资源配置清单文件有两种格式&#xff1a;yaml&#xff08;人性化&#xff0c;易读&#xff09;&#xff0c;j…