這篇文章將為大家詳細(xì)講解有關(guān)java判斷日期是否是當(dāng)天的方法,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
十余年的邛崍網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。全網(wǎng)營(yíng)銷(xiāo)推廣的優(yōu)勢(shì)是能夠根據(jù)用戶(hù)設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整邛崍建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“邛崍網(wǎng)站設(shè)計(jì)”,“邛崍網(wǎng)站推廣”以來(lái),每個(gè)客戶(hù)項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
public static boolean isToday(String str, String formatStr) throws Exception{ SimpleDateFormat format = new SimpleDateFormat(formatStr); Date date = null; try { date = format.parse(str); } catch (ParseException e) { logger.error("解析日期錯(cuò)誤", e); } Calendar c1 = Calendar.getInstance(); c1.setTime(date); int year1 = c1.get(Calendar.YEAR); int month2 = c1.get(Calendar.MONTH)+1; int day1 = c1.get(Calendar.DAY_OF_MONTH); Calendar c2 = Calendar.getInstance(); c2.setTime(new Date()); int year2 = c2.get(Calendar.YEAR); int month3 = c2.get(Calendar.MONTH)+1; int day2 = c2.get(Calendar.DAY_OF_MONTH); if(year1 == year2 && month2 == month3 && day1 == day2){ return true; } return false; }
上述代碼中 formatStr 是我們需要校驗(yàn)的日期形式,比如我需要校驗(yàn) “20161212”是否是當(dāng)天,那么formatStr為"yyyyMMdd"。
比如我們需要校驗(yàn)“2016-12-12”是不是當(dāng)天,就為“yyyy-MM-dd”,比如需要校驗(yàn)“2016/12/12”的字符串,就為“yyyy/MM/dd”,依次類(lèi)推即可。
java中使用SimpleDateFormat類(lèi)的構(gòu)造函數(shù)SimpleDateFormat(String str)構(gòu)造格式化日期的格式,
通過(guò)format(Date date)方法將指定的日期對(duì)象格式化為指定格式的字符串.
關(guān)于java判斷日期是否是當(dāng)天的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。