P15GEN2\59518
2024-05-29 d4210c7c4b04abde20037ea8aa0f54ef8a2649aa
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
package foundation.util;
 
import java.io.BufferedOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.net.URLDecoder;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.UUID;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
 
public class Util {
    
    private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    private static SimpleDateFormat sdfY = new SimpleDateFormat("yyyy");
    private static SimpleDateFormat sdfM = new SimpleDateFormat("MM");
    private static SimpleDateFormat sdfD = new SimpleDateFormat("dd");
    public static final String String_Return = "\r\n";
    public static String NORMALFORMAT = "YYYY-MM-dd";
    public static String MONTHLYFORMAT = "YYYYMM";
    
    //@he
    public static String ocrJson(String jsonStr) {
        if (isEmpty(jsonStr)) {
            return jsonStr;
        }
        
        jsonStr = jsonStr.replace("'", "‘");
        
        return jsonStr;
    }
    
    //@he 清除影响json, 数据库保存的数据
    public static String validJson(String jsonStr) {
        if (isEmpty(jsonStr)) {
            return jsonStr;
        }
        
        jsonStr = jsonStr.replace("'", "‘");
        jsonStr = jsonStr.replace("\"", "“");
        
        return jsonStr;
    }
    
    public static boolean isMatchByRule(String ruleStr, String str) throws Exception {
        String  regExp = ruleStr;
        Pattern p = Pattern.compile(regExp, Pattern.CASE_INSENSITIVE);
        Matcher m = p.matcher(str);
        return m.matches();
    }    
    
    public static <T> List<T> objToList(Object obj, Class<T> zlass) throws Exception {
        List<T> list = new ArrayList<T>();
        if (obj instanceof ArrayList<?>) {
            for (Object o : (List<?>) obj) {
                 list.add(zlass.cast(o));
            }
            return list;
        }
        return null;
    }    
    
    //@he将字符串前面的0都去掉
    public static String removeFirstZero(String str) {
        str = str.trim();
        if (isEmptyStr(str)) {
            return str;
        }
        return str.replaceFirst("^0*", "");
    }    
    
    //@he 得到当前日期之后或之前的日期
    public static String getDateByDay(int day) {
        Calendar currentDate = Calendar.getInstance();
        currentDate.add(Calendar.DAY_OF_YEAR, day);
        return sdf.format(currentDate.getTime());
    }
    
    //@he 根据年月日建目录
    public static String getDatePath(String type) {
        Date currentDate = new Date();
        String datePath = "";
        
        if ("YMD".equalsIgnoreCase(type)) {
            datePath = sdfY.format(currentDate) + "/" + sdfM.format(currentDate) + "/" + sdfD.format(currentDate) + "/";
            return datePath;
        }
        
        if ("YM".equalsIgnoreCase(type)) {
            datePath = sdfY.format(currentDate) + "/" + sdfM.format(currentDate) + "/";
            return datePath;
        }
        
        if ("Y".equalsIgnoreCase(type)) {
            datePath = sdfY.format(currentDate) + "/";
            return datePath;
        }    
        
        if ("YM".equalsIgnoreCase(type)) {
            datePath = sdfY.format(currentDate) + "/" + sdfM.format(currentDate) + "/";
            return datePath;
        }
        
        if ("D".equalsIgnoreCase(type)) {
            datePath = sdfD.format(currentDate) + "/";
            return datePath;
        }    
        
        if ("M".equalsIgnoreCase(type)) {
            datePath = sdfM.format(currentDate) + "/";
            return datePath;
        }
        
        if ("MD".equalsIgnoreCase(type)) {
            datePath = sdfM.format(currentDate) + "/" + sdfD.format(currentDate) + "/";
            return datePath;
        }        
 
        return datePath;
    }
    
    //@he
    public static String newShortGUID() {
        UUID uuid = UUID.randomUUID();
        String strGUID;
        String shortGUID;
 
        strGUID = uuid.toString();
        shortGUID = strGUID.substring(0, 8) + strGUID.substring(9, 13) + strGUID.substring(14, 18) + strGUID.substring(19, 23)
                + strGUID.substring(24, 36);
 
        return shortGUID;
    }
    
    //@he 增加byte转文件
    public static void getFileByByte(byte[] bytes, String filePath, String fileName) {
        BufferedOutputStream bos = null;
        FileOutputStream fos = null;
        File file = null;
        try {
             File dir = new File(filePath);
             if (!dir.exists() && dir.isDirectory()) {
                 dir.mkdirs();
             }
             file = new File(filePath + "/" + fileName);
             fos = new FileOutputStream(file);
             bos = new BufferedOutputStream(fos);
             bos.write(bytes);
        } catch (Exception e) {
             e.printStackTrace();
        } finally {
            if (bos != null) {
                try {
                     bos.close();
                } catch(Exception e) {
                     e.printStackTrace();
                }
            }
        }
    }    
    
    //@he 增加文件转byte
    public static byte[] fileToByte(File file) {
        byte[] data = null;
        try {
             FileInputStream fis = new FileInputStream(file);
             ByteArrayOutputStream bos = new ByteArrayOutputStream(1000);
             byte[] b = new byte[1000];
             int n;
             while ((n = fis.read(b)) != -1) {
                    bos.write(b, 0, n);
             }
             fis.close();
             data = bos.toByteArray();
             bos.close();
        } catch(Exception e) {
             e.printStackTrace();
        }
        return data;
    }    
    
    public static boolean isEmptyStr(Object str) {
        boolean result = false;
 
        if ((str == null) || ("".equals(str)) || (str.equals("null")) || (str.equals("{}")))
            result = true;
 
        return result;
    }    
 
    public static boolean isEmpty(String value) {
        if (value == null) {
            return true;
        }
        
        if ("".equals(value) || "null".equalsIgnoreCase(value)) {
            return true;
        }
        
        return false;
    }
    
    public static boolean isEmpty(Object value) {
        if (value == null) {
            return true;
        }
        
        if ("".equals(value)) {
            return true;
        }
        
        return false;
    }
    
    public static String[] split(String str) {
        if (str == null) {
            return new String[0];
        }
        
        return str.replace(",", ";").replace(",", ";").replace(";", ";").split(";");
    }
 
    public static String format(int value, int length) {
        String result = String.valueOf(value);
        
        while (result.length() < length) {
            result = "0" + result;
        }
        
        return result;
    }
    
    public static String newDateStr() {
        return newDateTimeStr("yyyy-MM-dd");
    }
 
    public static String newDateTimeStr() {
        return newDateTimeStr("yyyy-MM-dd kk:mm:ss");
    }
 
    public static String newDateTimeStr(String fomater) {
        return getDateTimeStr(new Date(), fomater);
    }
 
    public static String getDateTimeStr(Date date, String fomater) {
        String result = "";
        DateFormat dateFormat = new SimpleDateFormat(fomater);
        result = dateFormat.format(date);
 
        return result;
    }
    
    public static String doubleQuotedStr(String str) {
        if (str != null)
            return "\"" + str + "\"";
        else
            return "\"\"";
    }
 
    public static String quotedStr(String str) {
        if (str != null)
            return "'" + str + "'";
        else
            return "''";
    }
    
    public static Date StringToDate(String str) throws ParseException {
        if (isEmpty(str)) {
            return null;
        }
 
        Date result = null;
        String fomater = null;
        str = str.replace('T', ' ');
 
        if (str.indexOf("/") == 4) {
            fomater = "yyyy/MM/dd";
        }
        else if (str.indexOf("/") == 2 || str.indexOf("/") == 1) {
            fomater = "MM/dd/yyyy";
        }
        else if (str.indexOf("-") == 2 || str.indexOf("-") == 1) {
            fomater = "MM-dd-yyyy";
        }
        else if (str.indexOf("-") == 4 && str.indexOf(":") < 0) {
            fomater = "yyyy-MM-dd";
        }
        else if (str.indexOf("-") == 4 && str.indexOf(":") > 0) {
            if (str.split(":").length == 3) {
                fomater = "yyyy-MM-dd HH:mm:ss";
            }
            else {
                str = str + ":00";
                fomater = "yyyy-MM-dd HH:mm:00";
            }
 
        }
        else if (str.indexOf(".") == 2 || str.indexOf(".") == 1) {
            fomater = "MM.dd.yyyy";
        }
        else if (str.indexOf(".") == 4) {
            fomater = "yyyy.MM.dd";
        }
        else if (str.indexOf("-") < 0 && str.indexOf("/") < 0) {
            fomater = "yyyyMMdd";
        }
 
        DateFormat dateFormat = new SimpleDateFormat(fomater);
        result = dateFormat.parse(str);
 
        return result;
    }
    
    public static String DataTimeToString(Date value) {
        return DataTimeToString(value, "yyyy-MM-dd HH:mm:ss");
    }
 
    public static String DataTimeToString(Date value, String format) {
        if (value == null) {
            return null;
        }
 
        String result = "";
        DateFormat dateFormat = new SimpleDateFormat(format);
        result = dateFormat.format(value);
 
        return result;
    }
    
    public static String booleanToStr(boolean value) {
        if (value)
            return "T";
        else
            return "F";
    }
 
    public static boolean StringToBoolean(String value) {
        if (value != null) {
            value = value.toLowerCase();
 
            if (value.equals("t")) {
                return true;
            }
            else if (value.equals("y")) {
                return true;
            }
            else if (value.equals("true")) {
                return true;
            }
            else if (value.equals("yes")) {
                return true;
            }
            else {
                return false;
            }
        }
        else
            return false;
    }
 
    public static String decodeValue(Object value) {
        String result = null;
        
        if (value == null) {
            return null;
        }
        
        if (!(value instanceof String)) {
            result = String.valueOf(value);
        }
        else {
            result = (String)value;
        }
        
        try {
            result = URLDecoder.decode(result, "UTF-8");
            result = result.replace("%20", "+");
        }
        catch (Exception e) {
        }
 
        return result;
    }
    
    public static String stringJoin(String... strings) {
        StringBuilder stringBuilder = new StringBuilder();
        
        for (String segment: strings) {
             stringBuilder.append(segment);
        }
        
        return  stringBuilder.toString();
    }
 
    public static boolean equals(String one, String another) {
        if (one == null || "".equals(one)) {
            if (another == null || "".equals(another)) {
                return true;
            }
            
            return false;
        }
        else {
            if (another == null || "".equals(another)) {
                return false;
            }
            
            return one.equals(another);
        }
    }    
 
    public static boolean equals(Object one, Object another) {
        if (one == null) {
            if (another == null) {
                return true;
            }
            else {
                return false;
            }
        }
        else {
            if (another == null) {
                return false;
            }
        }
        
        return String.valueOf(one).equals(String.valueOf(another));
    }
    
    public static String ifEmpty(String value, String defaultValue) {
        if (isEmpty(value)) {
            return defaultValue;
        }
        
        return value;
    }
    
    public static boolean isInteger(String str) {  
        Pattern pattern = Pattern.compile("^[-\\+]?[\\d]*$");  
        return pattern.matcher(str).matches();  
    }
}