java 日期处理工具类_Java日期处理工具类DateUtils详解

本文实例为大家分享了Java日期处理工具类DateUtils的具体代码,供大家参考,具体内容如下

import java.sql.Timestamp;

import java.text.ParseException;

import java.text.SimpleDateFormat;

import java.util.Calendar;

import java.util.Date;

/**

*

*/

public class DateUtils {

/**

* Date format pattern this is often used.

*/

public static final String PATTERN_YMD = "yyyy-MM-dd";

/**

* Date format pattern this is often used.

*/

public static final String PATTERN_YMDHMS="yyyy-MM-dd HH:mm:ss";

/**

* Formats the given date according to the YMD pattern.

*

* @param date The date to format.

* @return An YMD formatted date string.

*

* @see #PATTERN_YMD

*/

public static String formatDate(Date date) {

return formatDate(date, PATTERN_YMD);

}

/**

* Formats the given date according to the specified pattern. The pattern

* must conform to that used by the {@link SimpleDateFormat simple date

* format} class.

*

* @param date The date to format.

* @param pattern The pattern to use for formatting the date.

* @return A formatted date string.

*

* @throws IllegalArgumentException If the given date pattern is invalid.

*

* @see SimpleDateFormat

*/

public static String formatDate(Date date, String pattern) {

if (date == null)

throw new IllegalArgumentException("date is null");

if (pattern == null)

throw new IllegalArgumentException("pattern is null");

SimpleDateFormat formatter = new SimpleDateFormat(pattern);

return formatter.format(date);

}

/**

* Parses a date value. The format used for parsing the date value are retrieved from

* the default PATTERN_YMD.

*

* @param dateValue the date value to parse

*

* @return the parsed date

*

* @throws IllegalArgumentException If the given dateValue is invalid.

*/

public static Date parseDate(String dateValue) {

return parseDate(dateValue, null);

}

/**

* Parses the date value using the given date format.

*

* @param dateValue the date value to parse

* @param dateFormat the date format to use

*

* @return the parsed date. if parse is failed , return null

*

* @throws IllegalArgumentException If the given dateValue is invalid.

*/

public static Date parseDate(String dateValue, String dateFormat) {

if (dateValue == null) {

throw new IllegalArgumentException("dateValue is null");

}

if (dateFormat == null) {

dateFormat = PATTERN_YMD;

}

SimpleDateFormat df = new SimpleDateFormat(dateFormat);

Date result = null;

try {

result = df.parse(dateValue);

}

catch (ParseException pe) {

pe.printStackTrace();// 日期型字符串格式错误

}

return result;

}

/**

* Adds a number of years to a date returning a new object.

* The original date object is unchanged.

*

* @param date the date, not null

* @param amount the amount to add, may be negative

* @return the new date object with the amount added

* @throws IllegalArgumentException if the date is null

*/

public static Date addYears(Date date, int amount) {

return add(date, Calendar.YEAR, amount);

}

/**

* Adds a number of years to a timestamp returning a new object.

* The original timestamp object is unchanged.

*

* @param timestamp the timestamp, not null

* @param amount the amount to add, may be negative

* @return the new timestamp object with the amount added

* @throws IllegalArgumentException if the timestamp is null

*/

public static Timestamp addYears(Timestamp timestamp, int amount) {

return add(timestamp, Calendar.YEAR, amount);

}

//-----------------------------------------------------------------------

/**

* Adds a number of months to a date returning a new object.

* The original date object is unchanged.

*

* @param date the date, not null

* @param amount the amount to add, may be negative

* @return the new date object with the amount added

* @throws IllegalArgumentException if the date is null

*/

public static Date addMonths(Date date, int amount) {

return add(date, Calendar.MONTH, amount);

}

/**

* Adds a number of months to a timestamp returning a new object.

* The original timestamp object is unchanged.

*

* @param timestamp the timestamp, not null

* @param amount the amount to add, may be negative

* @return the new timestamp object with the amount added

* @throws IllegalArgumentException if the timestamp is null

*/

public static Timestamp addMonths(Timestamp timestamp, int amount) {

return add(timestamp, Calendar.MONTH, amount);

}

//-----------------------------------------------------------------------

/**

* Adds a number of days to a date returning a new object.

* The original date object is unchanged.

*

* @param date the date, not null

* @param amount the amount to add, may be negative

* @return the new date object with the amount added

* @throws IllegalArgumentException if the date is null

*/

public static Date addDays(Date date, int amount) {

return add(date, Calendar.DATE, amount);

}

/**

* Adds a number of days to a timestamp returning a new object.

* The original timestamp object is unchanged.

*

* @param timestamp the timestamp, not null

* @param amount the amount to add, may be negative

* @return the new timestamp object with the amount added

* @throws IllegalArgumentException if the timestamp is null

*/

public static Timestamp addDays(Timestamp timestamp, int amount) {

return add(timestamp, Calendar.DATE, amount);

}

//-----------------------------------------------------------------------

/**

* Adds a number of minutes to a timestamp returning a new object.

* The original timestamp object is unchanged.

*

* @param timestamp the timestamp, not null

* @param amount the amount to add, may be negative

* @return the new timestamp object with the amount added

* @throws IllegalArgumentException if the timestamp is null

*/

public static Timestamp addMinutes(Timestamp timestamp, int amount) {

return add(timestamp, Calendar.MINUTE, amount);

}

/**

* Adds a number of days to current time returning a new object.

*

* @param amount the amount to add, may be negative

* @return the new timestamp object with the amount added

*/

public static Timestamp addDays(int amount) {

Calendar c = Calendar.getInstance();

c.add(Calendar.DATE, amount);

return new Timestamp(c.getTimeInMillis());

}

//-----------------------------------------------------------------------

/**

* Adds to a date returning a new object.

* The original date object is unchanged.

*

* @param date the date, not null

* @param calendarField the calendar field to add to

* @param amount the amount to add, may be negative

* @return the new date object with the amount added

* @throws IllegalArgumentException if the date is null

*/

private static Date add(Date date, int calendarField, int amount) {

if (date == null) {

throw new IllegalArgumentException("The date must not be null");

}

Calendar c = Calendar.getInstance();

c.setTime(date);

c.add(calendarField, amount);

return c.getTime();

}

/**

* Adds to a timestamp returning a new object.

* The original timestamp object is unchanged.

*

* @param timestamp the timestamp, not null

* @param calendarField the calendar field to add to

* @param amount the amount to add, may be negative

* @return the new timestamp object with the amount added

* @throws IllegalArgumentException if the timestamp is null

*/

private static Timestamp add(Timestamp timestamp, int calendarField, int amount) {

if (timestamp == null) {

throw new IllegalArgumentException("The timestamp must not be null");

}

Calendar c = Calendar.getInstance();

c.setTime(timestamp);

c.add(calendarField, amount);

return new Timestamp(c.getTimeInMillis());

}

/**

*

* @return 最小的当天日期值

*/

public static Timestamp now() {

Calendar c = Calendar.getInstance();

c.set(Calendar.HOUR_OF_DAY, 0);

c.set(Calendar.MINUTE, 0);

c.set(Calendar.SECOND, 0);

c.set(Calendar.MILLISECOND, 0);

return new Timestamp(c.getTimeInMillis());

}

/** This class should not be instantiated. */

private DateUtils() {

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持聚米学院。

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

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

相关文章

Ipython知识点总结

初识Python: Python是一种面向对象、直译式计算机程序语言。也是一种功能强大而完善的通用型语言,已经具有十多年的发展历史,成熟且稳定。Python 具有脚本语言中最丰富和强大的类库,足以支持绝大多数日常应用。 Python语法简捷而清…

光刻技术的“鬼斧”之变

来源:脑极体 在我们今天看来,晶体管发明以后,集成电路的出现一直到今天超大规模集成电路的出现,似乎是一件水到渠成的事情。但是如果回到半导体产业初兴的历史现场,我们就会发现没有任何一项关键技术的突破是“必然产生”的。&…

php设置html全局路径_PHPCMS V9 URL去掉或修改/html路径的方法

PHPCMS V9 URL去掉或修改/html路径的方法,在后台找了好长时间没有找到在哪儿可以设置栏目生成的前缀路径/html,不过最终还是找到了。修改配置文件。找到\caches\configs\system.php 找到“html_root”这一项,然后把/html这个字符串删除即可。更新缓存&am…

[PA 2014]Kuglarz

Description 魔术师的桌子上有n个杯子排成一行,编号为1,2,…,n,其中某些杯子底下藏有一个小球,如果你准确地猜出是哪些杯子,你就可以获得奖品。花费c_ij元,魔术师就会告诉你杯子i,i1,…,j底下藏有球的总数的奇偶性。采…

城市大脑从起源到终极状态的7个阶段

0.序言21世纪以来,前沿科技领域出现诸多“大脑”概念,如谷歌大脑,百度大脑,阿里大脑,360安全大脑,腾讯超级大脑等,城市大脑,城市神经网络,工业大脑,航空大脑&…

php7 字符串,php7 参数、整形及字符串处理机制修改实例分析

本文实例讲述了php7 参数、整形及字符串处理机制修改。分享给大家供大家参考,具体如下:参数处理机制修改一、重复参数命名不再支持。重复的参数命名不再支持。比如下面的代码执行的时候会报错:public function foo($a, $b, $unused, $unused)…

【转】成功的背后

转载:来自CSDN第一名博主:http://blog.csdn.net/phphot/article/details/2187505 成功的背后,有着许多不为人知的故事,而正是这些夹杂着泪水和汗水的过去,才成就了一个个走向成功的普通人。 凌晨两点半,早已…

地理信息技术加持 用数字孪生让城市更“聪明”

文章转载自微信公众号中地数码MapGIS,版权归原作者及刊载媒体所有。相关资料表明,过去二十年,中国智慧城市建设投资巨大,建设的传感网络已经领先全球,但硬件重复建设,多注重单方面的智慧化建设,…

php5.3升级5.4,centos php 5.3升级到 php5.4版本

centos php 5.3升级到 php5.4版本发布时间:2020-06-20 06:07:39来源:51CTO阅读:1021作者:kuingfuturephp5.3听说有bug,因此单独升级php5.3相关的版本到5.4具体步骤:下面是我之前的版本之前php版本是:[rootlocalhost ~]…

你所不知道的SQL Server数据库启动过程(用户数据库加载过程的疑难杂症)

转http://www.cnblogs.com/zhijianliutang/p/4100103.html 前言 本篇主要是上一篇文章的补充篇,上一篇我们介绍了SQL Server服务启动过程所遇到的一些问题和解决方法,可点击查看,我们此篇主要介绍的是SQL Server启动过程中关于用户数据库加载…

可持续发展的人工智能

微软亚洲研究院副院长刘铁岩在 WAIC 2020 微软论坛演讲视频来源:微软研究院AI头条可持续发展是一个非常重要的主题,无论是环保、健康、能源和材料,都与人类的生存和发展息息相关。随着工业的发展和科技的进步,我们看到大气、水质、…

php width,PHP imagefontwidth()用法及代码示例

imagefontwidth()函数是PHP中的内置函数,用于获取指定字体中字符的像素宽度。用法:int imagefontwidth( int $font )参数:该函数接受一个包含字体的单个参数$font。对于内置字体,它可以是1、2、3、4、5。对于自定义字体,它可以与i…

Sqring核心概念

Spring 是大规模企业级框架,用户数量多,数据规模大,功能众多,业务复杂, 性能和安全要求高 灵活多变 Spring框架是轻量级的框架,javaEE的春天,当前主流的框架,一站式的企业应用开发…

台积电2纳米获得重大突破

来源:经济日报(台)台积电冲刺先进制程,在2纳米研发有重大突破,已成功找到路径,将切入GAA(环绕闸极)技术,为台积电发展鳍式场效电晶体(FinFET)取得…

php url乱码java接收,java中url乱码解决方法

java中url乱码解决方法:(推荐:java视频教程)1、将字符串转码:newString(“xxxxx”.getBytes(“iso-8859-1”),”utf-8”)这种转码方式有很大的弊端,因为它是使用指定的字符集将此String编码为 byte 序列,并将结果存储到…

腾讯首次发布 AI 白皮书讲了什么?

来源 | 腾讯研究院(转载请注明来源)编辑 | 蒲蒲近日,在世界人工智能大会腾讯论坛上,腾讯集团副总裁、腾讯研究院院长司晓正式发布了《腾讯人工智能白皮书:泛在智能》(以下简称白皮书)。作为腾讯…

String, StringBuffer, StringBuilder之间的区别

String与StringBuffer/StringBuilder之间的主要区别 1.String对象不可变, 如果修改会重新创建一个对象, 然后把值保存进去. StringBuffer/StringBuilder对象是可变的. 2.String性能远远低于StringBuffer/StringBuilder 3.StringBuilder速度稍快于StringBuffer, 但与此带来的缺陷…

php代码怎么修改成laravel,Laravel框架实现即点即改功能的方法分析

本文实例讲述了Laravel框架实现即点即改功能的方法。分享给大家供大家参考,具体如下:有的时候我们不需要更改大量数据,只需要更改一个字段的时候,我们就用到了即点即改,以用户模块,修改用户名称为例,下图为我的展示模块当我们点击用户名时,会出现一个修改…

人工智能、网络空间对国家核安全的影响

来源:知远战略与防务研究所人工智能技术是一把双刃剑,其在网络空间和核领域的应用,一方面能够为网络安全和核安全提供技术保障;另一方面,人工智能技术也可能为对手所用,通过网络空间对核武器体系进行渗透进…

CF876 F 思维 枚举

给你n个数,问有几个区间满足,区间内或操作大于区间内的任意数。 首先可以知道,两数或操作的结果必定不会小于两者间的最大值,也就是说对于一个区间中,不合法的状态只有两值或相等。那么我们可以考虑枚举每个数&#xf…