版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、startDateendDate =Calendar callong startTime =long endTime =longjava 中常用的與時間有關(guān)的方法 (string 與 date 轉(zhuǎn)化, 出生 日期轉(zhuǎn)年齡,時間計算周次等)java view plain copy /* * 計算兩 個日期之間相差的天數(shù) * param smdate 較小的 時間 * param bdate 較大的時間 * return 相差天數(shù) * throws ParseException */ public static int DaysMinus(Date startDate,Date endDate) t
2、hrows ParseException SimpleDateFormat sdf=newSimpleDateFormat(yyyy-MM-dd) = sdf.parse(sdf.format(startDate); sdf.parse(sdf.format(endDate);= Calendar.getInstance(); cal.setTime(startDate); cal.getTimeInMillis(); cal.setTime(endDate); cal.getTimeInMillis();between_days=(endTime-startTime)/(1000*3600*
3、24);returnInteger.parseInt(String.valueOf(between_days); /* 字符串的日期格式的計算相差天數(shù) *param 開始日期: startDate *param 結(jié)束日期: endDate *return 相差天數(shù) */ public static int DaysMinus(String startDate,String endDate) throws ParseException SimpleDateFormat sdf=new SimpleDateFormat(yyyy-MM-dd); Calendar cal = Calendar.ge
4、tInstance(); cal.setTime(sdf.parse(startDate);longstartTime = cal.getTimeInMillis(); cal.setTime(sdf.parse(endDate);long endTime= cal.getTimeInMillis();long between_days =(endTime-startTime)/(1000*3600*24); return Integer.parseInt(String.valueOf(between_days); /* String 類型日期轉(zhuǎn) Date* param date* retur
5、n* throws ParseException*/public static Date string2Date(String date) throws ParseException SimpleDateFormat sdf = new SimpleDateFormat(yyyy-MM-dd); Date resultDate = sdf.parse(date); return resultDate; /* * Date 類型日期轉(zhuǎn) String * param date * return * throws ParseException */public static String date2
6、String(Date date) throwsParseException SimpleDateFormat sdf = newSimpleDateFormat(yyyy-MM-dd);StringcurrentTime =sdf.format(date);returncurrentTime; /* 日期相加param date* param days* return*/ public static Date dateAdd(Date date, int days) Calendar calendar = new GregorianCalendar(); calendar.setTime(d
7、ate);calendar.add(calendar.DATE, days); date = calendar.getTime(); return date; /* * String 類型日期相加 * param date * param days * return * throws ParseException */public static DatedateAdd(String date, int days) throws ParseException Date Datedate = string2Date(date); Calendar calendar = new GregorianC
8、alendar(); calendar.setTime(Datedate);calendar.add(calendar.DATE, days); Datedate = calendar.getTime();return Datedate; /* * 獲取當前日期的周次* 07 :星期日 , 01 :星期一 , 02 :星期二 , 03 :星期三 , 04 :星期四 , 05 :String DayOfWeek2MatchDict(Date dt) StringweekDays = 07, 01, 02, 03, 04, 05, 06;Calendar cal = Calendar.getIns
9、tance(); cal.setTime(dt); int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK) - 1; if getDateSysDate() throws ParseException(dayOfWeek < 0)dayOfWeek =0; return weekDaysdayOfWeek; /*獲取系統(tǒng)當前日期 date 類型return * throwsParseException*/ public static DateDate now = new Date();SimpleDateFormat sdf = new SimpleD
10、ateFormat(yyyy-MM-dd); String sysDate = sdf.format(now); Date resultDate = sdf.parse(sysDate); return resultDate; /* * 按照傳入的格式獲取系統(tǒng) date 類型世間 -年-月-日 時:分:秒.毫秒* yyyy-MM-ddHH:mm:ss.fff: 使用 24 小時制格式化日期 *yyyy-MM-dd hh:mm:ss.fff: 使用 12 小時制格式化日期 * yyyy-MM-dd HH:mm:ss zzz* yyyy-MM-ddHH:mm:ss.ff zzz* yyyy-MM-
11、dd HH:mm:ss.fff zzz* yyyy-MM-dd HH:mm:ss.ffff zzz * param format * return* throws ParseException*/public static Date getDateSysDate(String format) throws ParseException Date now = new Date();SimpleDateFormat sdf = new SimpleDateFormat(format); String sysDate = sdf.format(now);DateresultDate = sdf.pa
12、rse(sysDate);returnresultDate; /* * 根據(jù)出生日期獲取人的 年齡 * param strBirthDate(yyyy-mm-dd oryyyy/mm/dd) * return */public staticint year =int month = int day =/計算年齡intString getPersonAgeByBirthDate(Date dateBirthDate) if (dateBirthDate = null) return ; SimpleDateFormat dateFormat = new SimpleDateFormat(yyyy
13、-MM-dd); String strBirthDate=dateFormat.format(dateBirthDate); /讀取當前日期Calendar c =Calendar.getInstance(); c.get(Calendar.YEAR); c.get(Calendar.MONTH)+1; c.get(Calendar.DATE);age = year - Integer.parseInt(strBirthDate.substring(0, 4) - 1; if (Integer.parseInt(strBirthDate.substring(5,7) < month) a
14、ge+; else if(Integer.parseInt(strBirthDate.substring(5,7)= month && Integer.parseInt(strBirthDate.substring(8,10) <= day) age+; return String.valueOf(age); /* * 根據(jù) 出生日期獲取人的年齡 * * param strBirthDate(yyyy-mm-dd or yyyy/mm/dd)* return*/public static StringgetPersonAgeByBirthDate(StringstrBir
15、thDate)if(.equals(strBirthDate) | strBirthDate=null) return ;/讀取當前日期 Calendar c =Calendar.getInstance();int year =c.get(Calendar.YEAR);int month =c.get(Calendar.MONTH)+1;int day =c.get(Calendar.DATE);/計算年齡intage = year - Integer.parseInt(strBirthDate.substring(0, 4) -1; if (Integer.parseInt(strBirth
16、Date.substring(5,7) < month) age+; else if(Integer.parseInt(strBirthDate.substring(5,7)= month && Integer.parseInt(strBirthDate.substring(8,10) <= day)age+; return String.valueOf(age); /* * 獲取 當前日期是星期幾 <br>* 0-星期日 , 1- 星期一 ,2-星期二 , 3-星期三 , 4- 星期四 , 5-星期五 , 6- 星期六 * param dt* retu
17、rn */ public staticint getDayOfWeek(Date dt) Calendar cal =Calendar.getInstance(); cal.setTime(dt); int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK) - 1; return dayOfWeek; /* * 獲取當前日期 是星期幾 * 0-星期日 , 1- 星期一 , 2- 星期二 , 3- 星 期三, 4- 星期四 , 5- 星期五 , 6- 星期六 * param:strDate * */ public static intgetDayOfWeek(S
18、tring strDate) String format=yyyy-MM-dd; /可以方便地修改日期格 式SimpleDateFormat dateFormat = newSimpleDateFormat(format);Date date = null;try date = dateFormat.parse(strDate); Calendar c = Calendar.getInstance();c.setTime(date); inte.printStackTrace(); return -1; /* * 獲取系統(tǒng)當前時間return dayOfWeek; catch (ParseException e)*/ public static Str
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 三年級科學上冊教學計劃
- 2025年體育教師工作計劃范本
- 新學期九年級班主任全新工作計劃
- 人教版2025年六年級下冊語文教學計劃范文
- 中班幼兒文明禮儀培養(yǎng)計劃
- 熱德育工作計劃
- 2025學年新學期藝術(shù)教育工作計劃內(nèi)容
- 《夏天預防中暑》課件
- 土地承包合同單方解除的法律條文
- 工地干活合同模板
- 抖音公會公司運營制度
- 當代世界經(jīng)濟與政治考試復習題及答案
- 膝關(guān)節(jié)個案護理
- ICS(國際標準分類法)分類
- 2024年秋季學期新人教版生物七年級上冊課件 第四章 生物分類的方法 2.4.1 嘗試對生物進行分類
- 核反應堆熱工分析課程設計
- 2024國家開放大學電大本科《社會統(tǒng)計學》期末試題及答案
- 大學英語1(工科版)智慧樹知到期末考試答案章節(jié)答案2024年湖南工學院
- 2024年養(yǎng)老護理職業(yè)技能大賽理論備賽試題庫500題(含答案)
- 移動無線產(chǎn)品知識培訓
- 腫瘤病人的膏方治療
評論
0/150
提交評論