Get the system time in a specified format

Input format to give the system time to a specified format, showing the general page delimiters spaced, generally directly deposit box 14 digits string

public String getSystemDate(String format){
    SimpleDateFormat sdf = new SimpleDateFormat(format);
    return sdf == null ? null : sdf.format(new Date());
}

 

Guess you like

Origin www.cnblogs.com/yuan-zhou/p/11993415.html