com.majiaxueyuan.util.DateUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of date-util Show documentation
Show all versions of date-util Show documentation
DateUtils Design By MAJIAXUEYUAN
package com.majiaxueyuan.util;
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateUtil {
public static String formatYYYYMMDD(Date date) {
Format format = new SimpleDateFormat("yyyyMMdd");
String format2 = format.format(date);
return format2;
}
}