获取当前月第一天、最后一天、计算某个月共有多

系统 1608 0
    package com;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.GregorianCalendar;

public class DateUtil {
	
	/**
	 * 获取本月第一天
	 * @return 当前月第一天的日期
	 */
	public static String getMonthFirstDay() {
		Calendar cal = Calendar.getInstance();
		Calendar f = (Calendar) cal.clone();
		f.clear();
		f.set(Calendar.YEAR, cal.get(Calendar.YEAR));
		f.set(Calendar.MONTH, cal.get(Calendar.MONTH));
		String firstday = new SimpleDateFormat("yyyy-MM-dd").format(f.getTime());
		return firstday;

	}
	
	/**
	 * 获取本月最后一天
	 * @return 当前月最后一天的日期
	 */
	public static String getMonthLastDay() {
		Calendar cal = Calendar.getInstance();
		Calendar l = (Calendar) cal.clone();
		l.clear();
		l.set(Calendar.YEAR, cal.get(Calendar.YEAR));
		l.set(Calendar.MONTH, cal.get(Calendar.MONTH) + 1);
		l.set(Calendar.MILLISECOND, -1);
		String lastday = new SimpleDateFormat("yyyy-MM-dd").format(l.getTime());
		return lastday;

	}
	
	/**
	 * 根据日期计算某月有多少天
	 * @param date 需要计算有多少天的日期
	 * @return 返回当前日期的天数
	 */
	public static int getDays(String date){
		SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
		Calendar objCalendar = new GregorianCalendar();
		try {
			objCalendar.setTime(formatter.parse(date));
			int days = objCalendar.getActualMaximum(Calendar.DAY_OF_MONTH);
			return days;
		} catch (Exception e1) {
			e1.printStackTrace();
		}
		return 0;
	}
	

}


  

 

测试:

    package com.test;

import org.junit.Test;

import com.DateUtil;

public class DateTest {

	@Test
	public void test(){
		System.out.println("本月第一天是:"+DateUtil.getMonthFirstDay());	
	}
	@Test
	public void test2(){
		System.out.println("本月最后一天是:"+DateUtil.getMonthLastDay());
	}
	@Test
	public void test3(){
		String str = "2012-08-15";
		int days = DateUtil.getDays(str);
		System.out.println(str+"这个月共有"+days);
	}

}

  

 运行效果:


 

获取当前月第一天、最后一天、计算某个月共有多少天


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论