/**
* 计算指定日期的上一天
*
* @param dateTime
* 日期,格式为:yyyy-MM-dd
* @return
*/
public staticString getBeforeDay(String dateTime) {
Calendar now = Calendar.getInstance();
SimpleDateFormat simpledate =newSimpleDateFormat("yyyy-MM-dd");
Date date =null;
try{
date = simpledate.parse(dateTime);
}catch(ParseException ex) {
System.out.println("日期格式不符合要求:"+ ex.getMessage());
returnnull;
}
now.setTime(date);
intyear = now.get(Calendar.YEAR);
intmonth = now.get(Calendar.MONTH);
intday = now.get(Calendar.DAY_OF_MONTH) - 1;
now.set(year, month, day);
String time = simpledate.format(now.getTime());
returntime;
}
/**
* 计算指定日期的下一天
*
* @param dateTime
* 日期,格式为:yyyy-MM-dd
* @return
*/
public staticString getNextDay(String dateTime) {
Calendar now = Calendar.getInstance();
SimpleDateFormat simpledate =newSimpleDateFormat("yyyy-MM-dd");
Date date =null;
try{
date = simpledate.parse(dateTime);
}catch(ParseException ex) {
System.out.println("日期格式不符合要求:"+ ex.getMessage());
returnnull;
}
now.setTime(date);
intyear = now.get(Calendar.YEAR);
intmonth = now.get(Calendar.MONTH);
intday = now.get(Calendar.DAY_OF_MONTH) + 1;
now.set(year, month, day);
String time = simpledate.format(now.getTime());
returntime;
}
/**
* 得到指定月的天数
* @param _year
* @param _month
* @return
*/
public static intgetMaxDayOfMonth(int_year,int_month){
Calendar now = Calendar.getInstance();
intyear = 0;
intmonth = 0;
if(_month==1){
year = _year - 1;
month = 12;
}else{
year = _year;
month = _month - 1;
}
now.set(Calendar.YEAR, year);
now.set(Calendar.MONTH, month);
returnnow.getActualMaximum(Calendar.DATE);
}
/**
* 计算时间差
*
* @param beginTime
* 开始时间,格式:yyyy-MM-dd HH:mm:ss
* @param endTime
* 结束时间,格式:yyyy-MM-dd HH:mm:ss
* @return 从开始时间到结束时间之间的时间差(秒)
*/
public static longgetTimeDifference(String beginTime, String endTime) {
longbetween = 0;
SimpleDateFormat sdf =newSimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date end =null;
Date begin =null;
try{// 将截取到的时间字符串转化为时间格式的字符串
end = sdf.parse(endTime);
begin = sdf.parse(beginTime);
}catch(ParseException e) {
e.printStackTrace();
}
between = (end.getTime() - begin.getTime()) / 1000;// 除以1000是为了转换成秒
returnbetween;
}
/**
* 计算时间差
*
* @param time
* 指定的时间,格式为:yyyy-MM-dd HH:mm:ss
* @return 当前时间和指定时间的时间差(秒)
*/
public static longgetTimeDifference(String time) {
longbetween = 0;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String systemTime = sdf.format(newDate()).toString();
Date end =null;
Date begin =null;
try{// 将截取到的时间字符串转化为时间格式的字符串
end = sdf.parse(time);
begin = sdf.parse(systemTime);
}catch(ParseException e) {
e.printStackTrace();
}
between = Math.abs(end.getTime() - begin.getTime()) / 1000;// 除以1000是为了转换成秒
returnbetween;
}