大家好,欢迎来到IT知识分享网。
1 /** 2 * 字符串转Date方法 3 * @param dateStr 4 * @param format 如yyyy-MM-dd HH:mm:ss等 5 * @return 6 * @throws Exception 7 */ 8 public static Date stringToDate(String dateStr,String format) throws Exception{ 9 if(dateStr==null||"".equals(dateStr)){ 10 throw new Exception("stringToDate:要转换的日期参数为空!"); 11 } 12 Date date = null; 13 try{ 14 SimpleDateFormat sdf = new SimpleDateFormat(format); 15 date = sdf.parse(dateStr); 16 }catch(Exception e){ 17 e.printStackTrace(); 18 } 19 20 return date; 21 } 22 /** 23 * Date转字符串方法 24 * @param date 25 * @param format 如yyyy-MM-dd HH:mm:ss等 26 * @return 27 * @throws Exception 28 */ 29 public static String dateToString(Date date,String format) throws Exception{ 30 if(date==null){ 31 throw new Exception("dateToString:要转换的日期参数为空!"); 32 } 33 String dateStr = ""; 34 try{ 35 SimpleDateFormat sdf = new SimpleDateFormat(format); 36 dateStr = sdf.format(date); 37 }catch(Exception e){ 38 e.printStackTrace(); 39 } 40 41 return dateStr; 42 }
转载于:https://www.cnblogs.com/jinzhiming/p/4797470.html
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/25468.html