国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

使用java的Calendar對(duì)象獲得當(dāng)前日期的上幾個(gè)度開(kāi)始、結(jié)束時(shí)間

2019-11-15 00:44:40
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
使用java的Calendar對(duì)象獲得當(dāng)前日期的上幾個(gè)度開(kāi)始、結(jié)束時(shí)間

思路:

先獲得當(dāng)前季度的開(kāi)始和結(jié)束日期,在當(dāng)前日期的基礎(chǔ)上往前推3個(gè)月即上個(gè)季度的開(kāi)始和結(jié)束日期

/** * @param flag true:開(kāi)始日期;false:結(jié)束日期 * @return */public static String getLastQuarterTime(boolean flag){SimpleDateFormat shortSdf = new SimpleDateFormat("yyyy-MM-dd");SimpleDateFormat longSdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");String resultDate="";Date now = null;try {Calendar calendar = Calendar.getInstance();int currentMonth = calendar.get(Calendar.MONTH) + 1;//true:開(kāi)始日期;false:結(jié)束日期if(flag){if (currentMonth >= 1 && currentMonth <= 3)calendar.set(Calendar.MONTH, 0);else if (currentMonth >= 4 && currentMonth <= 6)calendar.set(Calendar.MONTH, 3);else if (currentMonth >= 7 && currentMonth <= 9)calendar.set(Calendar.MONTH, 6);else if (currentMonth >= 10 && currentMonth <= 12)calendar.set(Calendar.MONTH, 9);calendar.set(Calendar.DATE, 1);now = longSdf.parse(shortSdf.format(calendar.getTime()) + " 00:00:00");}else{if (currentMonth >= 1 && currentMonth <= 3) {calendar.set(Calendar.MONTH, 2);calendar.set(Calendar.DATE, 31);            } else if (currentMonth >= 4 && currentMonth <= 6) {            calendar.set(Calendar.MONTH, 5);            calendar.set(Calendar.DATE, 30);            } else if (currentMonth >= 7 && currentMonth <= 9) {            calendar.set(Calendar.MONTH, 8);            calendar.set(Calendar.DATE, 30);            } else if (currentMonth >= 10 && currentMonth <= 12) {            calendar.set(Calendar.MONTH, 11);            calendar.set(Calendar.DATE, 31);            }now = longSdf.parse(shortSdf.format(calendar.getTime()) + " 23:59:59");}calendar.setTime(now);// 設(shè)置日期calendar.add(Calendar.MONTH, -3);resultDate = longSdf.format(calendar.getTime());} catch (Exception e) {;}return resultDate;}

  


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 浦城县| 洛川县| 岳普湖县| 专栏| 于都县| 三都| 介休市| 闽清县| 甘泉县| 吴桥县| 新民市| 利辛县| 电白县| 八宿县| 利辛县| 额尔古纳市| 晋州市| 察隅县| 沅江市| 海伦市| 荔波县| 赞皇县| 武陟县| 道孚县| 宁化县| 凌海市| 凤凰县| 洪湖市| 新乡县| 桑日县| 理塘县| 桂阳县| 连云港市| 大余县| 襄汾县| 永平县| 昌平区| 五原县| 齐河县| 崇文区| 承德市|