zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
package com.changhong.epc.parsing.service.loop.tools.impl;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
 
import java.math.BigDecimal;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
 
@Slf4j
public class YMDTools {
 
    
    public static final DateFormat uid1 = new SimpleDateFormat("yyyyMMdd");
    public static final DateFormat uid2 = new SimpleDateFormat("yyMMddHHmmssSS");
    public static final DateFormat uid3 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    public static final DateFormat uid4 = new SimpleDateFormat("yyyy-MM-dd");
    public static final DateFormat uid5 = new SimpleDateFormat("HH:mm:ss");
    public static final DateFormat uid6 = new SimpleDateFormat("yyyy-MM");
    public static final DateFormat uid7 = new SimpleDateFormat("HH:mm");
    
    /**
     * [^0-9]
     */
    public static final String NOT_NUMBER_REGEXP = "\\D";
    
    /**
     * 日期各位数量
     * yyyy MM dd HH mm ss
     */
    private static final String[] DATE_EACH_TYPE = {"%03d","%02d","%02d","%02d","%02d","%02d"};
    
    /**
     * 时间各位数量
     * HH mm
     */
    private static final String[] TIME_EACH_TYPE = {"%02d","%02d"};
    
    /**
     * 时间类型
     */
    public static final String DATE_TYPE = "yyyyMMddHHmmss";
    
    /**
     * 时分类型
     */
    public static final String TIME_TYPE = "HHmm";
 
    /**
     * 计算小时数
     */
    public static final double HOUR_COUNT = 60D * 60D * 1000D;
    
    /**
     * 计算天数
     */
    public static final double DAYS_COUNT =  24 * HOUR_COUNT;
    
    private YMDTools(){
        
    }
    
    public static String dateYYYYMMDD(){
        return uid1.format(Calendar.getInstance().getTime());
    }
    
    public static String currentTimestamp(){
        return uid2.format(Calendar.getInstance().getTime());
    }
    
    public static String currentDateTime(){
        return uid3.format(Calendar.getInstance().getTime());
    }
    
    public static String currentDate(){
        return uid4.format(Calendar.getInstance().getTime());
    }
    public static String currentMonth(){
        return uid6.format(Calendar.getInstance().getTime());
    }
    
    /**
     * 
     * @Title: getDate
     * @param @param date
     * @param @return    设定文件
     * @return Date    返回类型
     * @throws
     */
    public static Date getDate(String date){
        try{
            if(StringUtils.isBlank(date)) 
                return null;
            String formatDate = formatDate(date);
            DateFormat df = new SimpleDateFormat(DATE_TYPE.substring(0, formatDate.length()));
            return df.parse(formatDate);
        }catch(Exception e){
            log.error(e.getMessage(), e);
            return null;
        }
    }
    
    public static String getTime(String time){
        if(StringUtils.isBlank(time)) {
            return null;
        }
        try {
             return formatTime(time);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
 
    /**
     * 格式日期
     * @Title: formatDate
     * @param @param date
     * @param @return    设定文件
     * @return String    返回类型
     * @throws
     */
    public static String formatDate(String date) {
        
        String[] dateEach = null;
        try {
            if(StringUtils.isBlank(date)) 
                return "";
            dateEach = date.split(NOT_NUMBER_REGEXP);
            for (int i = 0; i < dateEach.length; i++) {
                if(i == 0){
                    String year = dateEach[i];
                    if(year.length() < "yyyy".length()){
                        dateEach[i] = String.format(
                                String.format("%s%s", String.valueOf(getYearIndex1()), DATE_EACH_TYPE[i])
                                , Integer.parseInt(dateEach[i]));
                    }
                }else{
                    dateEach[i] = String.format(DATE_EACH_TYPE[i], Integer.parseInt(dateEach[i]));
                }
            }
        } catch (Exception e) {
        }
        return toString(dateEach);
    }
    
    public static String formatTime(String time){
        if(StringUtils.isBlank(time))
            return "";
        String [] timeEach = time.split(NOT_NUMBER_REGEXP);
        for (int i = 0; i < timeEach.length; i++) {
                timeEach[i] = String.format(TIME_EACH_TYPE[i], Integer.parseInt(timeEach[i]));
        }
        return toString(timeEach);
    }
    
    private static char getYearIndex1(){
        String date = uid6.format(new Date());
        return date.toCharArray()[0];
    }
    
    private static String toString(String... strs){
        if(strs == null){
            return "";
        }
        StringBuilder sb = new StringBuilder();
        for (String string : strs) {
            sb.append(string);
        }
        return sb.toString();
    }
    
    /**
     * 该日期的前一天
     * @Title: dateRightOneDays
     * @param @param dateType
     * @param @return    设定文件
     * @return Date    返回类型
     * @throws
     */
    public static Date dateRightOneDays(String date){
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(getDate(date));
        calendar.add(Calendar.DAY_OF_MONTH, -1);
        return calendar.getTime();
    }
    
    public static String dateRightOneDays(String date, DateFormat df){
        return df.format(dateRightOneDays(date));
    }
    
    /** 
     * 字符串转DATE类型
     * @Title: strToDate 
     * @param @param str
     * @param @return    设定文件 
     * @return Date    返回类型 
     * @throws 
     */ 
    public static Date strToDate(){
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
        try {
            return sdf.parse(YMDTools.currentDateTime());
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }
    
    /** 
     * date类型转到 字符串
     * @Title: dateToStr 
     * @param @param sdf
     * @param @param date
     * @param @return    设定文件 
     * @return String    返回类型 
     * @throws 
     */ 
    public static String dateToStr(SimpleDateFormat sdf,Date date){
        return sdf.format(date);
    }
    
    /**
     * 获得天数
     * @Title: getDays
     * @param @param beginDate
     * @param @param endDate
     * @param @return    设定文件
     * @return int    返回类型
     * @throws
     */
    public static double getDays(Date beginDate, Date endDate){
        return count(beginDate, endDate, DAYS_COUNT);
    }
    
    /**
     * 获得小时数
     * @Title: getHour
     * @param @param beginDate
     * @param @param endDate
     * @param @return    设定文件
     * @return double    返回类型
     * @throws
     */
    public static double getHour(Date beginDate, Date endDate){
        return count(beginDate, endDate, HOUR_COUNT);
    }
    
    /**
     * 计算时间
     * @Title: count
     * @param @param beginDate
     * @param @param endDate
     * @param @param countType
     * @param @return    设定文件
     * @return double    返回类型
     * @throws
     */
    public static double count(Date beginDate, Date endDate, double countType){
        if(beginDate == null || endDate == null) 
            return 0;
        BigDecimal bd = BigDecimal.valueOf((endDate.getTime() - beginDate.getTime()) / countType);
        return bd.setScale(1, BigDecimal.ROUND_HALF_UP).doubleValue();
    }
    
}