1. 程式人生 > >java的Date時間操作工具類(很全)

java的Date時間操作工具類(很全)

java中對時間操作的工具類,直接複製程式碼即可,很全很詳細,一定有你想要的!!!
package com.tx.framework.core.util;
import java.beans.PropertyEditorSupport;
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import org.springframework.util.StringUtils;
/**
* 類描述:時間操作定義類
*/
public class DateUtils extends PropertyEditorSupport {
// 各種時間格式
public static final SimpleDateFormat date_sdf = new SimpleDateFormat(“yyyy-MM-dd”);
public static final SimpleDateFormat yyyyMMdd = new SimpleDateFormat(“yyyyMMdd”);
public static final SimpleDateFormat date_sdf_wz = new SimpleDateFormat(“yyyy年MM月dd日”);
public static final SimpleDateFormat time_sdf = new SimpleDateFormat(“yyyy-MM-dd HH:mm”);
public static final SimpleDateFormat yyyymmddhhmmss = new SimpleDateFormat(“yyyyMMddHHmmss”);
public static final SimpleDateFormat short_time_sdf = new SimpleDateFormat(“HH:mm”);
public static final SimpleDateFormat datetimeFormat = new SimpleDateFormat(“yyyy-MM-ddHH:mm:ss”);
// 以毫秒錶示的時間
private static final long DAY_IN_MILLIS = 24 * 3600 * 1000;
private static final long HOUR_IN_MILLIS = 3600 * 1000;
private static final long MINUTE_IN_MILLIS = 60 * 1000;
private static final long SECOND_IN_MILLIS = 1000;
// 指定模式的時間格式
private static SimpleDateFormat getSDFormat(String pattern) {
return new SimpleDateFormat(pattern);
}

/**
* 當前日曆,這裡用中國時間表示
* @return 以當地時區表示的系統當前日曆
*/
public static Calendar getCalendar() {
return Calendar.getInstance();
}

/**
* 指定毫秒數表示的日曆
* @param millis毫秒數
* @return 指定毫秒數表示的日曆
*/
public static Calendar getCalendar(long millis) {
Calendar cal = Calendar.getInstance();
cal.setTime(new Date(millis));
return cal;
}

/**
* 當前日期
* @return 系統當前時間
*/
public static Date getDate() {
return new Date();
}

/**
* 指定毫秒數表示的日期
* @param millis 毫秒數
* @return 指定毫秒數表示的日期
*/
public static Date getDate(long millis) {
return new Date(millis);
}

/**
* 時間戳轉換為字串
* @param time
* @return
*/
public static String timestamptoStr(Timestamp time) {
Date date = null;
if (null != time) {
date = new Date(time.getTime());
}
return date2Str(date_sdf);
}

/**
* 字串轉換時間戳
* @param str
* @return
*/
public static Timestamp str2Timestamp(String str) {
Date date = str2Date(str, date_sdf);
return new Timestamp(date.getTime());
}
/**
* 字串轉換成日期
* @param str
* @param sdf
* @return
*/
public static Date str2Date(String str, SimpleDateFormat sdf) {
if (null == str || “”.equals(str)) {
return null;
}
Date date = null;
try {
date = sdf.parse(str);
return date;
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}

/**
* 日期轉換為字串
*
* @param date
* 日期
* @param format
* 日期格式
* @return 字串
*/
public static String date2Str(SimpleDateFormat date_sdf) {
Date date=getDate();
if (null == date) {
return null;
}
return date_sdf.format(date);
}
/**
* 格式化時間
* @param date
* @param format
* @return
*/
public static String dateformat(String date,String format)
{
SimpleDateFormat sformat = new SimpleDateFormat(format);
Date _date=null;
try {
_date=sformat.parse(date);
} catch (ParseException e) {
e.printStackTrace();
}
return sformat.format(_date);
}
/**
* 日期轉換為字串
*
* @param date 日期
* @param format 日期格式
* @return 字串
*/
public static String date2Str(Date date, SimpleDateFormat date_sdf) {
if (null == date) {
return null;
}
return date_sdf.format(date);
}
/**
* 日期轉換為字串
*
* @param date日期
* @param format日期格式
* @return 字串
*/
public static String getDate(String format) {
Date date=new Date();
if (null == date) {
return null;
}
SimpleDateFormat sdf = new SimpleDateFormat(format);
return sdf.format(date);
}

/**
* 指定毫秒數的時間戳
* @param millis毫秒數
* @return 指定毫秒數的時間戳
*/
public static Timestamp getTimestamp(long millis) {
return new Timestamp(millis);
}

/**
* 以字元形式表示的時間戳
* @param time毫秒數
* @return 以字元形式表示的時間戳
*/
public static Timestamp getTimestamp(String time) {
return new Timestamp(Long.parseLong(time));
}

/**
* 系統當前的時間戳
* @return 系統當前的時間戳
*/
public static Timestamp getTimestamp() {
return new Timestamp(new Date().getTime());
}

/**
* 指定日期的時間戳
* @param date指定日期
* @return 指定日期的時間戳
*/
public static Timestamp getTimestamp(Date date) {
return new Timestamp(date.getTime());
}

/**
* 指定日曆的時間戳
* @param cal指定日曆
* @return 指定日曆的時間戳
*/
public static Timestamp getCalendarTimestamp(Calendar cal) {
return new Timestamp(cal.getTime().getTime());
}

public static Timestamp gettimestamp() {
Date dt = new Date();
DateFormat df = new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”);
String nowTime = df.format(dt);
java.sql.Timestamp buydate = java.sql.Timestamp.valueOf(nowTime);
return buydate;
}

// getMillis 各種方式獲取的Millis

/**
* 系統時間的毫秒數
* @return 系統時間的毫秒數
*/
public static long getMillis() {
return new Date().getTime();
}

/**
* 指定日曆的毫秒數
* @param cal 指定日曆
* @return 指定日曆的毫秒數
*/
public static long getMillis(Calendar cal) {
return cal.getTime().getTime();
}

/**
* 指定日期的毫秒數
* @param date指定日期
* @return 指定日期的毫秒數
*/
public static long getMillis(Date date) {
return date.getTime();
}

/**
* 指定時間戳的毫秒數
* @param ts 指定時間戳
* @return 指定時間戳的毫秒數
*/
public static long getMillis(Timestamp ts) {
return ts.getTime();
}

// formatDate // 將日期按照一定的格式轉化為字串

/**
* 預設方式表示的系統當前日期,具體格式:年-月-日
* @return 預設日期按“年-月-日“格式顯示
*/
public static String formatDate() {
return date_sdf.format(getCalendar().getTime());
}

/**
* 預設方式表示的系統當前日期,具體格式:yyyy-MM-dd HH:mm:ss
* @return 預設日期按“yyyy-MM-dd HH:mm:ss“格式顯示
*/
public static String formatDateTime() {
return datetimeFormat.format(getCalendar().getTime());
}
/**
* 獲取時間字串
*/
public static String getDataString(SimpleDateFormat formatstr) {
return formatstr.format(getCalendar().getTime());
}
/* 指定日期的預設顯示,具體格式:年-月-日
* @param cal指定的日期
* @return 指定日期按“年-月-日“格式顯示
*/
public static String formatDate(Calendar cal) {
return date_sdf.format(cal.getTime());
}

/**
* 指定日期的預設顯示,具體格式:年-月-日
* @param date指定的日期
* @return 指定日期按“年-月-日“格式顯示
*/
public static String formatDate(Date date) {
return date_sdf.format(date);
}

/**
* 指定毫秒數表示日期的預設顯示,具體格式:年-月-日
* @param millis指定的毫秒數
* @return 指定毫秒數表示日期按“年-月-日“格式顯示
*/
public static String formatDate(long millis) {
return date_sdf.format(new Date(millis));
}

/**
* 預設日期按指定格式顯示
* @param pattern指定的格式
* @return 預設日期按指定格式顯示
*/
public static String formatDate(String pattern) {
return getSDFormat(pattern).format(getCalendar().getTime());
}

/**
* 指定日期按指定格式顯示
* @param cal 指定的日期
* @param pattern 指定的格式
* @return 指定日期按指定格式顯示
*/
public static String formatDate(Calendar cal, String pattern) {
return getSDFormat(pattern).format(cal.getTime());
}

/**
* 指定日期按指定格式顯示
* @param date指定的日期
* @param pattern指定的格式
* @return 指定日期按指定格式顯示
*/
public static String formatDate(Date date, String pattern) {
return getSDFormat(pattern).format(date);
}

// formatTime // 將日期按照一定的格式轉化為字串

/**
* 預設方式表示的系統當前日期,具體格式:年-月-日 時:分
* @return 預設日期按“年-月-日 時:分“格式顯示
*/
public static String formatTime() {
return time_sdf.format(getCalendar().getTime());
}

/**
* 指定毫秒數表示日期的預設顯示,具體格式:年-月-日 時:分
* @param millis 指定的毫秒數
* @return 指定毫秒數表示日期按“年-月-日 時:分“格式顯示
*/
public static String formatTime(long millis) {
return time_sdf.format(new Date(millis));
}

/**
* 指定日期的預設顯示,具體格式:年-月-日 時:分
* @param cal 指定的日期
* @return 指定日期按“年-月-日 時:分“格式顯示
*/
public static String formatTime(Calendar cal) {
return time_sdf.format(cal.getTime());
}

/**
* 指定日期的預設顯示,具體格式:年-月-日 時:分
* @param date 指定的日期
* @return 指定日期按“年-月-日 時:分“格式顯示
*/
public static String formatTime(Date date) {
return time_sdf.format(date);
}

// formatShortTime // 將日期按照一定的格式轉化為字串

/**
* 預設方式表示的系統當前日期,具體格式:時:分
* @return 預設日期按“時:分“格式顯示
*/
public static String formatShortTime() {
return short_time_sdf.format(getCalendar().getTime());
}

/**
* 指定毫秒數表示日期的預設顯示,具體格式:時:分
* @param millis 指定的毫秒數
* @return 指定毫秒數表示日期按“時:分“格式顯示
*/
public static String formatShortTime(long millis) {
return short_time_sdf.format(new Date(millis));
}

/**
* 指定日期的預設顯示,具體格式:時:分
* @param cal指定的日期
* @return 指定日期按“時:分“格式顯示
*/
public static String formatShortTime(Calendar cal) {
return short_time_sdf.format(cal.getTime());
}

/**
* 指定日期的預設顯示,具體格式:時:分
* @param date指定的日期
* @return 指定日期按“時:分“格式顯示
*/
public static String formatShortTime(Date date) {
return short_time_sdf.format(date);
}

將字串按照一定的格式轉化為日期或時間

/**
* 根據指定的格式將字串轉換成Date 如輸入:2003-11-19 11:20:20將按照這個轉成時間
* @param src要轉換的原始字元竄
* @param pattern 轉換的匹配格式
* @return 如果轉換成功則返回轉換後的日期
* @throws ParseException
* @throws AIDateFormatException
*/
public static Date parseDate(String src, String pattern)
throws ParseException {
return getSDFormat(pattern).parse(src);
}

/**
* 根據指定的格式將字串轉換成Date 如輸入:2003-11-19 11:20:20將按照這個轉成時間
* @param src將要轉換的原始字元竄
* @param pattern轉換的匹配格式
* @return 如果轉換成功則返回轉換後的日期
* @throws ParseException
* @throws AIDateFormatException
*/
public static Calendar parseCalendar(String src, String pattern)
throws ParseException {
Date date = parseDate(src, pattern);
Calendar cal = Calendar.getInstance();
cal.setTime(date);
return cal;
}

public static String formatAddDate(String src, String pattern, int amount)
throws ParseException {
Calendar cal;
cal = parseCalendar(src, pattern);
cal.add(Calendar.DATE, amount);
return formatDate(cal);
}

/**
* 根據指定的格式將字串轉換成Date 如輸入:2003-11-19 11:20:20將按照這個轉成時間
* @param src將要轉換的原始字元竄
* @param pattern轉換的匹配格式
* @return 如果轉換成功則返回轉換後的時間戳
* @throws ParseException
* @throws AIDateFormatException
*/
public static Timestamp parseTimestamp(String src, String pattern)
throws ParseException {
Date date = parseDate(src, pattern);
return new Timestamp(date.getTime());
}

// dateDiff // 計算兩個日期之間的差值

/**
* 計算兩個時間之間的差值,根據標誌的不同而不同
* @param flag 計算標誌,表示按照年/月/日/時/分/秒等計算
* @param calSrc減數
* @param calDes被減數
* @return 兩個日期之間的差值
*/
public static int dateDiff(char flag, Calendar calSrc, Calendar calDes) {
long millisDiff = getMillis(calSrc) - getMillis(calDes);
if (flag == ‘y’) {
return (calSrc.get(calSrc.YEAR) - calDes.get(calDes.YEAR));
}
if (flag == ‘d’) {
return (int) (millisDiff / DAY_IN_MILLIS);
}
if (flag == ‘h’) {
return (int) (millisDiff / HOUR_IN_MILLIS);
}
if (flag == ‘m’) {
return (int) (millisDiff / MINUTE_IN_MILLIS);
}
if (flag == ‘s’) {
return (int) (millisDiff / SECOND_IN_MILLIS);
}
return 0;
}