1./** 2. * 計算前一天 、後一天
3. *
4. * @param date 當前輸入的日期 格式為 2010-01-21
5. * @param amount
6. * @return
7.
*/8. public
static string getyesterday(string date, int
amount) catch
(parseexception e)
23.
24. }
25. return
newdate;
26. }
27.
28.
29.
30./*
* 31. * 計算兩天之間相差的天數 呼叫此方法必須保證 時間格式與 timeformatstr指定格式一致 否則異常
32. *
33. * @param begindate 開始時間
34. * @param enddate 結束時間
35. * @param timeformatstr 輸入時間格式
36. * @return int 時間相差天數
37.
*/38. public
static
intgetcountdays(string begindate, string enddate, string timeformatstr)
53. } catch
(parseexception e)
58. }
59. return
days;
60. }
61.
62.
63./*
* 取近期一年的資料
*/64. public
static listgetyears() else
85. }
86. return
result;
87. }
88.
89. /*
* 取上個月
*/90. public
static
string getprevmonth(string yearmonth)
105.
106. /*
* 取當月下的最後第一天
*/107. public
static
void
getlastday(string yearmonth)
114.
115. /*
* 取當月下的第一天
*/116. public
static
void
getfirstday(string yearmonth)
java日期加減
public static void main string args calendar.add int field,int amount 參考 jdk1.6 api public abstract voidadd int field,int amount 根據日曆的規則,為給定的日曆字段新增或減去...
JAVA 日期加減
計算前一天 後一天 param date 當前輸入的日期 格式為 2010 01 21 param amount return public static string getyesterday string date,int amount catch parseexception e return...
java日期的加減
private static final string date number pattern yyyymmdd 定義日期返回的型別 由yyyymmdd格式的字串返回日期 param date return public static date numbertodate string string ...