date 转化为 指定格式的String


public static String parseDateTime(java.util.Date date, String format)

{

 if (date == null) {
   return "";
 }
 SimpleDateFormat sm = new SimpleDateFormat(format);
 return sm.format(date);

}

测试:
// 具体格式 可以自己更改 如 yyyy-MM-dd等


@Test
public void test() {
    System.out.println(DateTimeUtil.parseDateTime(new Date(), "yyyy-MM-dd HH:mm:ss"));
}

你可能感兴趣的:(date 转化为 指定格式的String)