feiyu02
2020-09-01 43242c8e7915b968bb7a6f3f22bded7704f0e40f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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");
}