程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 日期/時間校驗(yyyyMMddHHmmss)

日期/時間校驗(yyyyMMddHHmmss)

編輯:關於C語言

 

 

public static boolean checkValidDate(String pDateObj) {   

        try{   

          int year = new Integer(pDateObj.substring(0, 4)).intValue();   

          int month = new Integer(pDateObj.substring(4, 6)).intValue();   

          int date = new Integer(pDateObj.substring(6, 8)).intValue(); 

          int hourOfDay = new Integer(pDateObj.substring(8, 10)).intValue(); 

          int minute = new Integer(pDateObj.substring(10, 12)).intValue(); 

          int second = new Integer(pDateObj.substring(12, 14)).intValue(); 

          Calendar   cal   =   Calendar.getInstance();   

          cal.setLenient(   false   );   //允許嚴格檢查日期格式   

          cal.set(year,   month-1,   date); 

          cal.set(year, month - 1, date, hourOfDay, minute, second); 

          cal.getTime();//該方法調用就會拋出異常   

      }catch(   Exception   e   )   {    

          ret   =   false;   

      }   

      return   ret;   

 }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved