/**
* 拓展日期工具類
* @author hejianwei
* */
public class moedateutils
/**
* 獲取某周得最後一天
* @param year 年
* @param week 周
* @return
*/
public static date getlastdayofweek(int year, int week)
/**
* 獲取某月得第一天
* @param year 年
* @param month 月
* @return
*/
public static date getfirstdayofmonth(int year, int month)
/**
* 獲取某月得最後一天
* @param year 年
* @param month 月
* @return
*/
public static date getlastdayofmonth(int year, int month)
/**
* 獲取某季度得第一天
* @param year 年
* @param quarter 季度
* @return
*/
public static date getfirstdayofquarter(int year, int quarter)
return getfirstdayofmonth(year, month);
} /**
* 獲取某季度得最一天
* @param year 年
* @param quarter 季度
* @return
*/
public static date getlastdayofquarter(int year, int quarter)
return getlastdayofmonth(year, month);
} /**
* 獲取某年得第一天
* @param year 年
* @return
*/
public static date getfirstdayofyear(int year)
/**
* 獲取某年得最後一天
* @param year 年
* @return
*/
public static date getlastdayofyear(int year)
public static void main(string args)
Java 日期工具類
一些公共的方法,可能會使用到,記錄下 獲得時間範圍的天數差 author wjc param startdatestr 開始日期字串yyyy mm dd param enddatestr 結束日期字串yyyy mm dd return 天數差 0 當天 1 連續日期 public static in...
Java日期工具類
1 概述 類date表示特定的瞬間,精確到毫秒 2 構造方法 public date 分配 date 物件並初始化此物件,以表示分配它的時間 精確到毫秒 public date long date 分配 date 物件並初始化此物件,以表示自從標準基準時間 稱為 曆元 epoch 即 1970 年 ...
Java日期工具類一
public class datetimeutil 字串轉換成timestamp param datetime 要轉換的時間字串 return 轉換失敗返回 null throws parseexception public static timestamp stringtotimestamp st...