最近在工作中經常碰到處理日期的情況,為實現需求寫了一些函式,總結如下:
/*** 月份相加
* @param datestr日期字串,格式yyyymmddhhmmss
* @param m,月數,整數表示m月之後的月份,負數表示m月之前的月份
* @param dtfmt 日期格式
* @return 月份相加的結果
* */
public static string monthoperation(string datestr,int m,string dtfmt) catch(exception e)
}測試結果:
輸出結果:
輸出結果:
Java日期處理
獲取當前系統時間 date d new date system.out.println d.tostring 輸出結果為美式時間格式,用以下辦法轉換成中式時間格式 dateformat sdf new dateformat yyyy mm dd hh mm ss string time sdf.fo...
java 日期處理
日期比較 param date01 param date02 return 如果date01 date02 返回true,否則返回false throws parseexception private boolean datecompare string date01,string date02 c...
java 日期處理
一。date 比較 date a date b 1.a.after b 返回boolean a在b後返回true a.before b 返回boolean b在a前返回true a.equals b a,b相等返回true 2.calendar c1 calendar.getinstance c1....