package cn.flightfeather.thirdapp.util;
|
|
import java.text.SimpleDateFormat;
|
|
/**
|
* Created by note_ff_1602 on 2017/12/6.
|
*/
|
|
public class DateFormatter {
|
public static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy年MM月dd日");
|
public static SimpleDateFormat YearMonthFormat = new SimpleDateFormat("yyyy-MM");
|
public static SimpleDateFormat YearMonthFormat_CN = new SimpleDateFormat("yyyy年MM月");
|
public static SimpleDateFormat dateFormatWeek = new SimpleDateFormat("yyyy年MM月dd日 EEEE");
|
public static SimpleDateFormat dateFormat2 = new SimpleDateFormat("yyyy-MM-dd");
|
public static SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm");
|
public static SimpleDateFormat dateTimeFormat = new SimpleDateFormat("yyyy年MM月dd日 HH:mm");
|
public static SimpleDateFormat dateTimeFormat_month_2_minute = new SimpleDateFormat("MM月dd日 HH:mm");
|
public static SimpleDateFormat dateTimeFormat2 = new SimpleDateFormat("yyyy-MM-dd HH:mm");
|
public static SimpleDateFormat dateTimeFormat3 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
public static SimpleDateFormat dateTimeFormat_full = new SimpleDateFormat("yyyyMMddHHmmssSSS");
|
}
|