美文网首页
将指定的日期按照指定的格式转换为字符串

将指定的日期按照指定的格式转换为字符串

作者: ml66 | 来源:发表于2016-10-28 13:48 被阅读0次
    package com.gml.springmvc.test;
    
    import java.text.SimpleDateFormat;
    import java.util.Date;
    /**
     * 将指定的日期按照指定的格式转换为字符串
     * @author li
     *
     */
    public class DateUtil {
        public static final String FORMAT_ALL="yyyy-MM-dd HH:mm:ss";
        public static final String FORMAT_YMD="yyyy-MM-dd";
        public static String format(Date d,String s){
            SimpleDateFormat sdf=new SimpleDateFormat(s);
            return sdf.format(d);
            
        }
        public static String getSystemTime(){
            return format(new Date(), FORMAT_ALL);
        }
        public static void main(String[] args) {
            System.out.println(getSystemTime());
        }
        
    }
    
    

    相关文章

      网友评论

          本文标题:将指定的日期按照指定的格式转换为字符串

          本文链接:https://www.haomeiwen.com/subject/qzceuttx.html