/**
* 功能描述:兩個時間相隔天數
** @param begindatestr
* @param enddatestr
* @return long
* @author administrator
*/public static long getdaysub(string begindatestr, string enddatestr) catch (parseexception e)
day = (enddate.gettime() - begindate.gettime()) / (24 * 60 * 60 * 1000);
"相隔的天數="+day);
return day;
/*** 得到n天之後的日期
** @param days
* @return
*/public static string getafterdaydate(string days)
/*** 得到n天之後是週幾
** @param days
* @return
*/public static string getafterdayweek(string days)
/*** 得到當前月後面months個月
** @param months 幾月
* @return
*/public static string getaftermonth(date curdate, int months)
/*** 獲取指定年指定月的天數
* @param year 年
* @param month 月
* @return
*/public static int getmonthlastday(int year, int month)
/*** 獲取當月的 天數
* */
public static int getcurrentmonthday()
/*** 獲取當月的 天數
* */
public static int getlastmonthday()
Java日期時間處理常用方法
雖然是老生常談,但整理出來還是有點用。1.由字串時間得到date型別時間 由字串時間得到date型別時間 public static date getdatefrom string strdate catch exception ex 2.由date型別時間得到字串時間 由date型別時間得到字串時...
Java日期時間處理常用方法
雖然是老生常談,但整理出來還是有點用。1.由字串時間得到date型別時間 由字串時間得到date型別時間 public static date getdatefrom string strdate catch exception ex 2.由date型別時間得到字串時間 由date型別時間得到字串時...
MySQL常用處理方法
1.replace into replace into t id,update time values 1,now 或 replace into t id,update time select 1,now replace into 跟 insert 功能類似,不同點在於 replace into 首...