实例解析Java日期格式工具类DateUtil.java

时间:2021-12-30 08:48:27

话不多说,请看代码:

DateUtil.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package pers.kangxu.datautils.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
import pers.kangxu.datautils.common.exception.DefineException;
/**
 *
 * <b>
 *  处理日期  工具类
 * </b>
 * @author kangxu
 *
 */
public class DateUtil {
  /**
   * 字符串日期转日期格式日期
   * @param str 字符串日期
   * @param dateFormat 字符串日期格式
   * @return
   */
  public static Date strToDate(String strDate,String dateFormat){
    SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
    Date date = null;
    try {
      date = sdf.parse(strDate);
    } catch (Exception e) {
      throw new DefineException("日期格式转换出错");
    }
    return date;
  }
  /**
   * 将日期转换为字符串日期
   * @param date 日期
   * @param tarDateFormat 日期格式
   * @return
   */
  public static String dateToStr(Date date,String tarDateFormat){
    return new SimpleDateFormat(tarDateFormat).format(date);
  }
  /**
   * 转换日期格式
   * @param strDate 字符串日期
   * @param srcFormat 原始格式
   * @param tarFormat 目标格式
   * @return
   */
  public static String strToStr(String strDate,String srcFormat,String tarFormat){
    SimpleDateFormat sdf = new SimpleDateFormat(srcFormat);
    try {
      Date date = sdf.parse(strDate);
      sdf = new SimpleDateFormat(tarFormat);
      strDate = sdf.format(date);
    } catch (Exception e) {
      throw new DefineException("日期格式转换出错");
    }
    return strDate;
  }
}

测试使用

DateUtilTester.java

?
1
2
3
4
5
6
7
8
9
10
package pers.kangxu.datautils.test;
import java.util.Date;
import pers.kangxu.datautils.utils.DateUtil;
public class DateUtilTester {
  public static void main(String[] args) {
    System.out.println(DateUtil.dateToStr(new Date(), "yyyy-MM-dd HH:mm:dd"));
    System.out.println(DateUtil.strToStr("2011-1-1 1:1:1","yyyy-MM-dd HH:mm:ss", "yyyyMMddHHmmss"));
    System.out.println(DateUtil.strToDate("2011-1-1 1:1:1","yyyy-MM-dd HH:mm:ss"));
  }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!

原文链接:http://www.cnblogs.com/kangxu/p/6232608.html