houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.common.utils;
 
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.Date;
 
public class CommonUtils {
    /**
     *<p>获取当前日期<p>
     *<p>格式yyyyMMdd<p>
   */
    public static String getCurrDate(){
        Date date=new Date(); 
        SimpleDateFormat df1 = new SimpleDateFormat("yyyyMMdd"); 
        String tDate = df1.format(date);   
        return tDate;
    }
    
    /**
     *<p>获取当前时间<p>
     *<p>格式yyyyMMddHHmmss<p>
   */
    public static String getCurrDate2(){
        Date date=new Date(); 
        SimpleDateFormat df1 = new SimpleDateFormat("yyyyMMddHHmmss"); 
        String tDate = df1.format(date);   
        return tDate;
    }
    
    /**
     *<p>获取当前时间<p>
     *<p>格式yyyy-MM-dd HH:mm:ss<p>
   */
    public static String getCurrDate3(){
        Date date=new Date(); 
        SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
        String tDate = df1.format(date);   
        return tDate;
    }
    
      /**
       * 由年月日时分秒+3位随机数
       * 生成流水号
       * @return
       */
      public static Long Getnum(){
          String t = getCurrDate2();
          int x=(int)(Math.random()*900)+100;
          String serial = t + x;
          Long num = new Long(serial);
          return num;
      }
 
    public static BigDecimal getJSONValue(Object obj) {
          if (obj == null) {
              return null;
        }
          return new BigDecimal(obj.toString());
    }
 
}