package com.moral.monitor.util;
|
|
import java.text.SimpleDateFormat;
|
import java.util.Date;
|
|
/**
|
* Created by a on 2017/4/27.
|
*/
|
public class DateConvert {
|
|
public static String dateConvert(Date date){
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
String format = formatter.format(date);
|
return format;
|
}
|
}
|