将指定的日期按照指定的格式转换为字符串
2016-10-28 本文已影响0人
ml66
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());
}
}