字符串变date_string转为date类型

字符串变date_string转为date类型1 /** 2 * 字符串转Date方法 3 * @param dateStr 4 * @param format 如yyyy-MM-dd HH:mm:ss等 5 * @return 6 * @throws Exception 7 …

字符串变date_string转为date类型"

 

 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     }

 

今天的文章字符串变date_string转为date类型分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/48061.html

(0)
编程小号编程小号
上一篇 2023-09-04
下一篇 2023-09-04

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注