java Date日期处理工具类

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.regex.Pattern;

/**
 * Descript: 时间处理
 * 
 */
public class WebDateTime {

	/**
	 * 取得当前日期和时间
	 * 
	 * @return String
	 */
	public static String getNowDateTime() {
		String nowdatetime = "";
		nowdatetime = getNowDate() + " " + getNowTime();
		return nowdatetime;
	}

	/**
	 * 取得当前的系统日期
	 * 
	 * @return String
	 */
	public  static String getNowDate() {
		String thedate = "";
		String themonth = "";
		int thedate1 = 0;
		int themonth1 = 0;
		String nowday = "";
		Calendar calendar = Calendar.getInstance();

		thedate1 = calendar.get(Calendar.DATE);
		if ((thedate1 == 1) || (thedate1 == 2) || (thedate1 == 3)
				|| (thedate1 == 4) || (thedate1 == 5) || (thedate1 == 6)
				|| (thedate1 == 7) || (thedate1 == 8) || (thedate1 == 9)) {
			thedate = "0" + thedate1;
		} else {
			thedate = String.valueOf(thedate1);
		}
		themonth1 = calendar.get(Calendar.MONTH) + 1;
		if ((themonth1 == 1) || (themonth1 == 2) || (themonth1 == 3)
				|| (themonth1 == 4) || (themonth1 == 5) || (themonth1 == 6)
				|| (themonth1 == 7) || (themonth1 == 8) || (themonth1 == 9)) {
			themonth = "0" + themonth1;
		} else {
			themonth = String.valueOf(themonth1);
		}
		nowday = calendar.get(Calendar.YEAR) + "-" + (themonth) + "-"
				+ (thedate); // 当前日期
		return nowday;
	}

	/**
	 * 取得当前系统时间
	 * 
	 * @return String
	 */
	public  static String getNowTime() {
		String nowtime = "";
		int nowhour = 0;
		int nowminute = 0;
		int nowsecond = 0;
		Calendar calendar = Calendar.getInstance();
		nowhour = calendar.get(Calendar.HOUR_OF_DAY);
		nowminute = calendar.get(Calendar.MINUTE);
		nowsecond = calendar.get(Calendar.SECOND);

		String nowhourstring = String.valueOf(nowhour);
		String nowminutestring = String.valueOf(nowminute);
		String nowsecondstring = String.valueOf(nowsecond);

		if (nowhourstring.length() < 2) {
			nowhourstring = "0" + nowhourstring;
		}
		if (nowminutestring.length() < 2) {
			nowminutestring = "0" + nowminutestring;
		}
		if (nowsecondstring.length() < 2) {
			nowsecondstring = "0" + nowsecondstring;
		}
		nowtime = nowhourstring + ":" + nowminutestring + ":" + nowsecondstring;
		return nowtime;
	}

	/**
	 * 取得当前是一周中的第几天
	 * 
	 * @return String
	 */
	public static String getNowWeekDay() {
		String nowweekday = "";
		Calendar calendar = Calendar.getInstance();
		int weekday = calendar.get(Calendar.DAY_OF_WEEK);
		if (weekday == 7) {
			nowweekday = "星期日";
		} else if (weekday == 1) {
			nowweekday = "星期一";
		} else if (weekday == 2) {
			nowweekday = "星期二";
		} else if (weekday == 3) {
			nowweekday = "星期三";
		} else if (weekday == 4) {
			nowweekday = "星期四";
		} else if (weekday == 5) {
			nowweekday = "星期五";
		} else if (weekday == 6) {
			nowweekday = "星期六";
		}
		return (nowweekday);
	}

	/**
	 * 获取一个时间是星期几
	 * 
	 * @param thedate
	 * @return String
	 */
	public static String getWeekDay(String thedate) {
		String nowdate = getNowDate() + " 00:00:00";
		int days = (int) timeCalculate(nowdate, thedate) - 1;
		String theweekday = "";
		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.DATE, days);
		int weekday = calendar.get(Calendar.DAY_OF_WEEK);
		if (weekday == 7) {
			theweekday = "星期日";
		} else if (weekday == 1) {
			theweekday = "星期一";
		} else if (weekday == 2) {
			theweekday = "星期二";
		} else if (weekday == 3) {
			theweekday = "星期三";
		} else if (weekday == 4) {
			theweekday = "星期四";
		} else if (weekday == 5) {
			theweekday = "星期五";
		} else if (weekday == 6) {
			theweekday = "星期六";
		}
		return (theweekday);
	}

	/**
	 * 获取一个时间是星期几
	 * 
	 * @param thedate
	 * @return String
	 */
	public static String getWeekDay(Date thedate) {
		String nowdate = getNowDate() + " 00:00:00";
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date date = null;
		try {
			date = format.parse(nowdate);
		} catch (Exception e) {

		}
		int days = (int) timeCalculate(thedate, date) - 1;
		String theweekday = "";
		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.DATE, days);
		int weekday = calendar.get(Calendar.DAY_OF_WEEK);
		if (weekday == 7) {
			theweekday = "星期日";
		} else if (weekday == 1) {
			theweekday = "星期一";
		} else if (weekday == 2) {
			theweekday = "星期二";
		} else if (weekday == 3) {
			theweekday = "星期三";
		} else if (weekday == 4) {
			theweekday = "星期四";
		} else if (weekday == 5) {
			theweekday = "星期五";
		} else if (weekday == 6) {
			theweekday = "星期六";
		}
		return (theweekday);
	}

	/**
	 * 日期加减
	 * 
	 * @param days
	 * @return String
	 */
	public static String getDateAddDate(int days) {
		String thedate = "";
		String themonth = "";
		int thedate1 = 0;
		int themonth1 = 0;
		String nowday = "";

		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.DATE, days);

		thedate1 = calendar.get(Calendar.DATE);
		if ((thedate1 == 1) || (thedate1 == 2) || (thedate1 == 3)
				|| (thedate1 == 4) || (thedate1 == 5) || (thedate1 == 6)
				|| (thedate1 == 7) || (thedate1 == 8) || (thedate1 == 9)) {
			thedate = "0" + thedate1;
		} else {
			thedate = String.valueOf(thedate1);
		}

		themonth1 = calendar.get(Calendar.MONTH) + 1;
		if ((themonth1 == 1) || (themonth1 == 2) || (themonth1 == 3)
				|| (themonth1 == 4) || (themonth1 == 5) || (themonth1 == 6)
				|| (themonth1 == 7) || (themonth1 == 8) || (themonth1 == 9)) {
			themonth = "0" + themonth1;
		} else {
			themonth = String.valueOf(themonth1);
		}
		nowday = calendar.get(Calendar.YEAR) + "-" + (themonth) + "-"
				+ (thedate); // 当前日期

		return nowday;
	}

	/**
	 * 小时加减
	 * 
	 * @param date
	 * @param hour
	 * @return String
	 */
	public static String getDateAddHour(String date, int hour) {
		String nowdate = getNowDateTime();
		date = getTime(date);
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date thedate_nowdate = null;
		Date insideDate_date = null;
		try {
			thedate_nowdate = format.parse(nowdate);
			insideDate_date = format.parse(date);
		} catch (Exception e) {

		}
		int hours = (int) timeCalculateHour(thedate_nowdate, insideDate_date);

		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.HOUR_OF_DAY, hours + hour);

		return getDate(calendar);
	}

	/**
	 * 小时加减
	 * 
	 * @param date
	 * @param hour
	 * @return String
	 */
	public static String getDateAddHour(Date date, int hour) {
		String nowdate = getNowDateTime();
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date thedate_nowdate = null;
		try {
			thedate_nowdate = format.parse(nowdate);
		} catch (Exception e) {

		}
		int hours = (int) timeCalculateHour(thedate_nowdate, date);

		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.HOUR_OF_DAY, hours + hour);

		return getDate(calendar);
	}
	/**
	 * 分钟加减
	 * 
	 * @param date
	 * @param hour
	 * @return String
	 */
	public static String getDateAddMinutes(Date date, int minute) {
		String nowdate = getNowDateTime();
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date thedate_nowdate = null;
		try {
			thedate_nowdate = format.parse(nowdate);
		} catch (Exception e) {

		}
		int minutes = (int) timeCalculateMinutes(thedate_nowdate, date);

		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.MINUTE, minutes + minute);

		return getDate(calendar);
	}
	/**
	 * 秒加减
	 * 
	 * @param date
	 * @param hour
	 * @return String
	 */
	public static String getDateAddSeconds(Date date, int seconds) {
		String nowdate = getNowDateTime();
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date thedate_nowdate = null;
		try {
			thedate_nowdate = format.parse(nowdate);
		} catch (Exception e) {

		}
		int second = (int) timeCalculateSeconds(thedate_nowdate, date);

		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.SECOND, second + seconds);

		return getDate(calendar);
	}

	/**
	 * 比较日期的大小,判断time1和time2的大小time1>time2时返回1,time1 <time2是返回-1,time1=time2返回0;
	 * 
	 * @param time1
	 *            String格式日期
	 * @param time2
	 *            String格式日期
	 * @return int
	 */
	public static int compareTime(String time1, String time2) {
		time1 = getTime(time1);
		time2 = getTime(time2);
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		int flag = 0;
		try {
			Date date1, date2;
			date1 = format.parse(time1);
			date2 = format.parse(time2);
			long millisecond = date1.getTime() - date2.getTime();
			if (millisecond > 0) {
				flag = 1;
			} else if (millisecond < 0) {
				flag = -1;
			} else if (millisecond == 0) {
				flag = 0;
			}
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return (flag);
	}

	/**
	 * 比较日期的大小,判断time1和time2的大小time1>time2时返回1,time1 <time2是返回-1,time1=time2返回0;
	 * 
	 * @param time1
	 *            Date格式日期
	 * @param time2
	 *            Date格式日期
	 * @return int
	 */
	public static int compareTime(Date time1, Date time2) {
		int flag = 0;
		try {
			long millisecond = time1.getTime() - time2.getTime();
			if (millisecond > 0) {
				flag = 1;
			} else if (millisecond < 0) {
				flag = -1;
			} else if (millisecond == 0) {
				flag = 0;
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return (flag);
	}

	/**
	 * 计算time2-time1得到的天数差
	 * 
	 * @param time1
	 *            String格式日期
	 * @param time2
	 *            String格式日期
	 * @return int
	 */
	public static float timeCalculate(String time1, String time2) {
		time1 = getTime(time1);
		time2 = getTime(time2);
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

		float day = 0;
		Date date1 = null;
		Date date2 = null;

		try {
			date1 = format.parse(time1);
			date2 = format.parse(time2);
			long millisecond = date2.getTime() - date1.getTime();
			day = millisecond / (24 * 60 * 60 * 1000);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return (day);
	}

	/**
	 * 计算time2-time1的天数差
	 * 
	 * @param time1
	 *            Date格式日期
	 * @param time2
	 *            Date格式日期
	 * @return double
	 */
	public static float timeCalculate(Date time1, Date time2) {
		float day = 0;
		try {
			Date date1, date2;
			date1 = time1;
			date2 = time2;
			long millisecond = date2.getTime() - date1.getTime();
			day = millisecond / (24 * 60 * 60 * 1000);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return (day);
	}

	/**
	 * 计算小时差
	 * 
	 * @param time1
	 * @param time2
	 * @return double
	 */
	public static double timeCalculateHour(String time1, String time2) {
		time1 = getTime(time1);
		time2 = getTime(time2);
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		double hour = 0;
		try {
			Date date1, date2;
			date1 = format.parse(time1);
			date2 = format.parse(time2);
			double millisecond = date2.getTime() - date1.getTime();
			hour = millisecond / (60 * 60 * 1000);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return hour;
	}

	/**
	 * 计算时差
	 * 
	 * @param date1
	 * @param date2
	 * @return double
	 */
	public static double timeCalculateHour(Date date1, Date date2) {
		double hour = 0;
		double millisecond = date2.getTime() - date1.getTime();
		hour = millisecond / (60 * 60 * 1000);
		return hour;
	}
	/**
	 * 计算分钟差
	 * 
	 * @param date1
	 * @param date2
	 * @return double
	 */
	public static double timeCalculateMinutes(Date date1, Date date2) {
		double minutes = 0;
		double millisecond = date2.getTime() - date1.getTime();
		minutes = millisecond / (60 * 1000);
		return minutes;
	}
	/**
	 * 计算分钟差
	 * 
	 * @param date1
	 * @param date2
	 * @return double
	 */
	public static double timeCalculateMinutes(String time1, String time2) {
		time1 = getTime(time1);
		time2 = getTime(time2);
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		double minutes = 0;
		try {
			Date date1, date2;
			date1 = format.parse(time1);
			date2 = format.parse(time2);
			double millisecond = date2.getTime() - date1.getTime();
			minutes = millisecond / (60 * 1000);
		} catch (ParseException e) {
			e.printStackTrace();
		}	
		return minutes;
	}
	/**
	 * 计算秒差
	 * 
	 * @param date1
	 * @param date2
	 * @return double
	 */
	public static double timeCalculateSeconds(Date date1, Date date2) {
		double millisecond = date2.getTime() - date1.getTime();
		double seconds = millisecond/1000;
		return seconds;
	}

	/**
	 * 取得当前时间
	 * 
	 * @param time
	 * @return long
	 */
	public static long getLongTime(String time) {
		time = getTime(time);
		long longtime = 0;
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date date;
		try {
			date = format.parse(time);
			longtime = date.getTime();
		} catch (Exception e) {

		}
		return longtime;
	}

	/**
	 * 字符串转换时间
	 * 
	 * @param datestring
	 * @param theformat
	 * @return Date
	 */
	public static Date parseDate(String datestring, String theformat) {
		if (theformat == null) {
			datestring = getTime(datestring);
			theformat = "yyyy-MM-dd HH:mm:ss";
		}
		SimpleDateFormat format = new SimpleDateFormat(theformat);
		Date date = null;
		try {
			date = format.parse(datestring);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return date;
	}

	/**
	 * 取得月份的天数
	 * 
	 * @param year
	 * @param month
	 * @return int
	 */
	public static int getDaysOfMonth(int year, int month) {
		int days = 0;
		Calendar calendar = Calendar.getInstance();
		calendar.set(year, month - 1, 1);
		days = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);
		return days;
	}

	/**
	 * 取得当前月份天数
	 * 
	 * @return int
	 */
	public static int getDaysOfMonth() {
		int days = 0;
		int year = getNowYearOnly();
		int month = getNowMonthOnly();
		days = getDaysOfMonth(year, month);
		return days;
	}

	/**
	 * 取得当前年份
	 * 
	 * @return int
	 */
	public static int getNowYearOnly() {
		int year;
		Calendar calendar = Calendar.getInstance();
		year = calendar.get(Calendar.YEAR);
		return year;
	}

	/**
	 * 取得当前月份
	 * 
	 * @return int
	 */
	public static int getNowMonthOnly() {
		int month;
		Calendar calendar = Calendar.getInstance();
		month = calendar.get(Calendar.MONTH) + 1;
		return month;
	}

	/**
	 * 取得当前日期
	 * 
	 * @return int
	 */
	public static int getNowDateOnly() {
		int date;
		Calendar calendar = Calendar.getInstance();
		date = calendar.get(Calendar.DATE);
		return date;
	}

	/**
	 * 取得单前小时
	 * 
	 * @return int
	 */
	public static int getNowHourOnly() {
		int hour;
		Calendar calendar = Calendar.getInstance();
		hour = calendar.get(Calendar.HOUR_OF_DAY);
		return hour;
	}

	/**
	 * 取得单前分钟
	 * 
	 * @return int
	 */
	public static int getNowMinuteOnly() {
		int hour;
		Calendar calendar = Calendar.getInstance();
		hour = calendar.get(Calendar.MINUTE);
		return hour;
	}

	/**
	 * 取得单前秒钟
	 * 
	 * @return int
	 */
	public static int getNowSecondOnly() {
		int hour;
		Calendar calendar = Calendar.getInstance();
		hour = calendar.get(Calendar.SECOND);
		return hour;
	}

	/**
	 * 取得日期
	 * 
	 * @param calendar
	 * @return String
	 */
	public static String getDate(Calendar calendar) {
		String thedate = "";
		String themonth = "";
		int thedate1 = 0;
		int themonth1 = 0;

		String nowtime = "";
		int nowhour = 0;
		int nowminute = 0;
		int nowsecond = 0;

		String nowday = "";

		thedate1 = calendar.get(Calendar.DATE);
		if ((thedate1 == 1) || (thedate1 == 2) || (thedate1 == 3)
				|| (thedate1 == 4) || (thedate1 == 5) || (thedate1 == 6)
				|| (thedate1 == 7) || (thedate1 == 8) || (thedate1 == 9)) {
			thedate = "0" + thedate1;
		} else {
			thedate = String.valueOf(thedate1);
		}
		themonth1 = calendar.get(Calendar.MONTH) + 1;
		if ((themonth1 == 1) || (themonth1 == 2) || (themonth1 == 3)
				|| (themonth1 == 4) || (themonth1 == 5) || (themonth1 == 6)
				|| (themonth1 == 7) || (themonth1 == 8) || (themonth1 == 9)) {
			themonth = "0" + themonth1;
		} else {
			themonth = String.valueOf(themonth1);
		}
		nowday = calendar.get(Calendar.YEAR) + "-" + (themonth) + "-"
				+ (thedate); // 当前日期

		nowhour = calendar.get(Calendar.HOUR_OF_DAY);
		nowminute = calendar.get(Calendar.MINUTE);
		nowsecond = calendar.get(Calendar.SECOND);

		String nowhourstring = String.valueOf(nowhour);
		String nowminutestring = String.valueOf(nowminute);
		String nowsecondstring = String.valueOf(nowsecond);

		if (nowhourstring.length() < 2) {
			nowhourstring = "0" + nowhourstring;
		}
		if (nowminutestring.length() < 2) {
			nowminutestring = "0" + nowminutestring;
		}
		if (nowsecondstring.length() < 2) {
			nowsecondstring = "0" + nowsecondstring;
		}
		nowtime = nowhourstring + ":" + nowminutestring + ":" + nowsecondstring;

		return nowday + " " + nowtime;
	}

	/**
	 * 是否包含了日期和时间的正确格式
	 * 
	 * @param time
	 * @return
	 */
	public static boolean isFullDateFormat(String time) {
		time = (time == null||time.equals("null")) ? "" : time.trim();
		String regex = "^[0-9][0-9][0-9][0-9]-(((0?[13578]|1[02])?-(0?[1-9]|[12][0-9]|3[01]))|((0?[469]|11)?-(0?[1-9]|[12][0-9]|30))|(0?2-(0?[1-9]|[12][0-9]))) (2[0123]|[01]{0,1}[0-9])\\:[0-5]?[0-9]\\:[0-5]?[0-9]$";			
		Pattern pattern=Pattern.compile(regex);
		return pattern.matcher(time).find();	
	}

	/**
	 * 是否只包含了日期的正确格式
	 * 
	 * @param time
	 * @return
	 */
	public static boolean isOnlyDateFormat(String time) {
		time = (time == null||time.equals("null")) ? "" : time.trim();
		String regex = "^[0-9][0-9][0-9][0-9]-(((0?[13578]|1[02])?-(0?[1-9]|[12][0-9]|3[01]))|((0?[469]|11)?-(0?[1-9]|[12][0-9]|30))|(0?2-(0?[1-9]|[12][0-9])))$";
		Pattern pattern=Pattern.compile(regex);
		return pattern.matcher(time).find();
	}

	/**
	 * 是否只有时间的正确格式
	 * 
	 * @param time
	 * @return
	 */
	public static boolean isOnlyTimeFormat(String time) {
		time = (time == null||time.equals("null")) ? "" : time.trim();
		String regex = "^(2[0123]|[01]{0,1}[0-9])\\:[0-5]?[0-9]\\:[0-5]?[0-9]$";
		Pattern pattern=Pattern.compile(regex);
		return pattern.matcher(time).find();
	}

	private static String getTime(String time) {
		time = (time == null||time.equals("null")) ? "" : time.trim();
		if(time.split(" ").length<2){
        	time=time+" 00:00:00";
        }
		return time;
	}

	/**
	 * 天加减
	 * 
	 * @param date
	 * @param day
	 * @return
	 */
	public static String getDateAddDay(String date, int day) {
		Calendar calendar = Calendar.getInstance();
		calendar.setTime(parseDate(date, null));
		calendar.add(Calendar.DAY_OF_YEAR, day);
		return getDate(calendar);
	}

	/**
	 * 月份加减
	 * 
	 * @param date
	 * @param day
	 * @return
	 */
	public static String getDateAddMonth(String date, int day) {
		Calendar calendar = Calendar.getInstance();
		calendar.setTime(parseDate(date, null));
		calendar.add(Calendar.MONTH, day);
		return getDate(calendar);
	}

	/**
	 * 获取一个时间是星期几 数字
	 * 
	 * @param thedate
	 * @return
	 */
	public static int getWeekDayNum(String thedate) {
		String nowdate = getNowDate() + " 00:00:00";
		int days = (int) timeCalculate(nowdate, thedate) - 1;
		Calendar calendar = Calendar.getInstance();
		calendar.add(Calendar.DATE, days);
		int weekday = calendar.get(Calendar.DAY_OF_WEEK);
		return (weekday);
	}

	/**
	 * 当前月前五个月显示
	 * 
	 * @param dateFormat
	 * @return
	 */
	public  static List<String> getYearAndMonth(String dateFormat) {// dateFormat 显示格式
		// format the date
		SimpleDateFormat objSdft = new SimpleDateFormat(dateFormat);
		// SimpleDateFormat valueSdft = new SimpleDateFormat("yyyy-MM");
		// get the Calendar object
		Calendar objCal = Calendar.getInstance();
		// get the current date
		Date dateNow = objCal.getTime();
		// get the latest 6th month
		objCal.add(Calendar.MONTH, -5);
		// 画面的下拉框
		List<String> lstQueryDate = new ArrayList<String>();
		// 当前月之前的第6个月的日期
		Date dateBefore = objCal.getTime();
		// 取得前5个月的日期
		while (dateBefore.before(dateNow)) {
			// 日期格式化
			lstQueryDate.add(objSdft.format(dateBefore));
			objCal.add(Calendar.MONTH, 1);
			dateBefore = objCal.getTime();
		}
		;
		// 当前月日期
		lstQueryDate.add(objSdft.format(dateNow));
		// list倒序显示
		Collections.reverse(lstQueryDate);
		return lstQueryDate;
	}
	/**
	 * 取某月的上一月份
	 * @param theYearMonth "200809"
	 * @return
	 */
	public  static String getTheLastYearMonth(String theYearMonth){
		String theYear=theYearMonth.substring(0, 4);
		String theMonth=theYearMonth.substring(4);
		int theIntMonth=Integer.parseInt(theMonth);
		int theIntYear=Integer.parseInt(theYear);
		if(--theIntMonth==0){
			theIntMonth=12;
			theIntYear--;
		}
		String theLastMonth=Integer.toString(theIntMonth);
		if (theLastMonth.length()==1) {
			theLastMonth="0"+theLastMonth;
		}
		return Integer.toString(theIntYear)+theLastMonth;
	}
	
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值