码迷,mamicode.com
首页 > 其他好文 > 详细

日期工具类

时间:2017-12-19 19:52:23      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:throw   ret   工具   orm   span   col   ram   imp   public   

import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * 日期工具类
 * @author gabodouer
 *
 */
public class DateUtil {

    /**
     * 日期对象转字符串
     * @param date
     * @param format
     * @return
     */
    public static String formatDate(Date date, String format) {
        String result = "";
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        if (date != null) {
            result = sdf.format(date);
        }
        return result;
    }

    /**
     * 字符串转日期对象
     * @param str
     * @param format
     * @return
     * @throws Exception
     */
    public static Date formatString(String str, String format) throws Exception {
        if (StringUtil.isEmpty(str)) {
            return null;
        }
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        return sdf.parse(str);
    }

    public static String getCurrentDateStr() throws Exception {
        Date date = new Date();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
        return sdf.format(date);
    }

}

 

日期工具类

标签:throw   ret   工具   orm   span   col   ram   imp   public   

原文地址:http://www.cnblogs.com/pai-da-xing/p/8066037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!