獲取指定年月的第一天
/**
* 獲取指定年月的第一天
* @param year
* @param month
* @return
* @throws parseexception
*/@suppresswarnings("unused")
private string getfirstdayofmonth1(string date) throws parseexception
calendar cal = calendar.getinstance();
cal.settime(curdate);
//獲取某月最小天數
int firstday = cal.getminimum(calendar.date);
//設定日曆中月份的最小天數
cal.set(calendar.day_of_month,firstday);
return df.format(cal.gettime());
}
獲取指定年月的最後一天
/**
* 獲取指定年月的最後一天
* @param year
* @param month
* @return
* @throws parseexception
*/@suppresswarnings("unused")
private string getlastdayofmonth1(string date) throws parseexception
cal.settime(curdate);
//獲取某月最大天數
int lastday = cal.getactualmaximum(calendar.date);
//設定日曆中月份的最大天數
cal.set(calendar.day_of_month, lastday);
return df.format(cal.gettime());
}
C DateTime 月第一天和最後一天 取法
取得某月和上個月第一天和最後一天的方法 取得某月的第一天 要取得月份第一天的時間 private datetime firstdayofmonth datetime datetime 取得某月的最後一天 要取得月份最後一天的時間 private datetime lastdayofmonth dat...
C DateTime 月第一天和最後一天 取法
取得某月和上個月第一天和最後一天的方法 取得某月的第一天 要取得月份第一天的時間 private datetime firstdayofmonth datetime datetime 取得某月的最後一天 要取得月份最後一天的時間 private datetime lastdayofmonth dat...
C 獲取周的第一天 最後一天 月第一天和最後一天
獲取指定日期所在周的最後一天,星期天為最後一天 public static datetime getdatetimeweeklastdaysun datetime datetime catch return lastweekday 獲取指定日期的月份第一天 public static datetim...