广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
package cn.huge.base.common.utils;
 
import org.springframework.util.ObjectUtils;
 
import java.math.BigDecimal;
 
/**
 * @author zhouxiantao
 * @date 2024/9/19 5:43 下午
 */
public class BigDecimalUtil {
 
    //add,subtract,multiply,divide
 
    public static Double add(String first,String second){
        return toBigDecimal(first).add(toBigDecimal(second)).doubleValue();
    }
 
    public static Double add(Double first,Double second){
        return add(first.toString(),second.toString());
    }
 
    public static Double subtract(String first,String second){
        return toBigDecimal(first).subtract(toBigDecimal(second)).doubleValue();
    }
 
    public static Double subtract(Double first,Double second){
        return subtract(first.toString(),second.toString());
    }
 
    public static Double multiply(String first,String second){
        return toBigDecimal(first).multiply(toBigDecimal(second)).doubleValue();
    }
 
    public static Double multiply(Double first,Double second){
        return multiply(first.toString(),second.toString());
    }
 
    public static Double multiply(Integer first,Integer second){
        return multiply(first.toString(),second.toString());
    }
 
    /**
     * @param first
     * @param second
     * @param scale    保留小数点位数
     * @param roundingMode    进位规则
     */
    public static Double divide(String first,String second, Integer scale, Integer roundingMode){
        if(null==second){
            return (double) 0;
        }
        if(0==Double.valueOf(second)){
            return (double) 0;
        }
        return toBigDecimal(first).divide(toBigDecimal(second), scale, roundingMode).doubleValue();
    }
 
 
    public static String divideScale(String first, String second, Integer scale, Integer roundingMode){
        return toBigDecimal(first).divide(toBigDecimal(second), scale, roundingMode).toString();
 
    }
 
    public static Double divideRoundHalf(Integer first, Integer second) {
        if (null == second) {
            return (double) 0;
        }
        if (0 == second.intValue()) {
            return (double) 0;
        }
        return divide(first.toString(), second.toString(), 2, BigDecimal.ROUND_HALF_UP);
    }
 
    public static Double divide(Double first,Double second, Integer scale, Integer roundingMode){
        return divide(first.toString(),second.toString(), scale, roundingMode);
    }
 
    public static Double divide(Integer first,Integer second, Integer scale, Integer roundingMode){
        if(null==second){
            return (double) 0;
        }
        if(0==second.intValue()){
            return (double) 0;
        }
        return divide(first.toString(),second.toString(), scale, roundingMode);
    }
 
    public static BigDecimal toBigDecimal(String number){
        return new BigDecimal(number);
    }
 
    public static BigDecimal toBigDecimal(Double number){
        return toBigDecimal(number.toString());
    }
 
    public static Double getPercent(Double number){
        return number * 100;
    }
 
    /**
     *  @param first
     *  @param second
     *  @param scale    保留小数点位数
     *  进阶规则:四舍五入
     *  去掉小数点后面多余的0
     * */
    public static Double divideDelZero(Double first,Double second, Integer scale) {
        if(ObjectUtils.isEmpty(second) || ObjectUtils.isEmpty(first)){
            return (double) 0;
        }
        if(second == 0 || first == 0){
            return (double) 0;
        }
        Double number = divide(first, second, scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        BigDecimal noZeros = numberD.stripTrailingZeros();
        return noZeros.doubleValue();
    }
 
    /**
     *  @param first
     *  @param second
     *  @param scale    保留小数点位数
     *  进阶规则:四舍五入
     *  去掉小数点后面多余的0
     * */
    public static String divideToString(Double first,Double second, Integer scale) {
        if(ObjectUtils.isEmpty(second) || ObjectUtils.isEmpty(first)){
            return "0";
        }
        if(second == 0 || first == 0){
            return "0";
        }
        Double number = divide(first, second, scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        BigDecimal noZeros = numberD.stripTrailingZeros();
        return noZeros.toPlainString();
    }
 
    /**
     *  @param first
     *  @param second
     *  @param scale    保留小数点位数
     *  进阶规则:四舍五入
     *  去掉小数点后面多余的0
     * */
    public static String integerDivideDelZero(Integer first,Integer second, Integer scale) {
        if(ObjectUtils.isEmpty(second) || ObjectUtils.isEmpty(first)){
            return "0";
        }
        if(second == 0 || first == 0){
            return "0";
        }
        Double number = divide(first, second, scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        BigDecimal noZeros = numberD.stripTrailingZeros();
        return noZeros.toPlainString();
    }
 
    /**
     * 字符串数字保留一位小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static String strDelZero(String number) {
        BigDecimal numberD =new BigDecimal(number).setScale(1, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        String result = noZeros.toPlainString();
        return result;
    }
 
    /**
     * double保留对应的小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static Double doubleDelZero(Double number,Integer scale) {
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        return noZeros.doubleValue();
    }
 
    /**
     * double保留对应的小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static String doubleToString(Double number,Integer scale) {
        if(ObjectUtils.isEmpty(number)) {
            return "0";
        }
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        String result = noZeros.toPlainString();
        return result;
    }
 
    /**
     * float保留对应的小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static String floatToString(Float number,Integer scale) {
        if(ObjectUtils.isEmpty(number)) {
            return "0";
        }
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        String result = noZeros.toPlainString();
        return result;
    }
 
    /**
     * 百分比x100 保留对应的小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static String percentDelZero(Double number,Integer scale) {
        BigDecimal numberD =new BigDecimal(number*100).setScale(scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        String result = noZeros.toPlainString();
        return result;
    }
 
    /**
     * 如果double为null返回0
     * */
    public static double stringToDouble(String number) {
        if(ObjectUtils.isEmpty(number) || "null".equals(number)) {
            return 0d;
        }
        return Double.valueOf(number);
    }
 
    /**
     * 如果Integer为null返回0
     * */
    public static Integer stringToInteger(String number) {
        if(ObjectUtils.isEmpty(number)|| "null".equals(number)) {
            return 0;
        }
        return Integer.valueOf(number);
    }
 
    /**
     * double保留对应的小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static String stringDelZero(String number,Integer scale) {
        if(ObjectUtils.isEmpty(number)) {
            return "0";
        }
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        String result = noZeros.toPlainString();
        return result;
    }
 
    /**
     * double转Integer
     * 进阶规则:向上取整
     * */
    public static Integer doubleToIntegerUp(Double number) {
        BigDecimal numberD =new BigDecimal(number).setScale(0, BigDecimal.ROUND_UP);
        //去掉小数点后面的0
        return numberD.intValue();
    }
 
    /**
     * double保留对应的小数点,并且去掉小数点后面多余的0
     * 进阶规则:四舍五入
     * */
    public static Double doubleUp(Double number,Integer scale) {
        if(ObjectUtils.isEmpty(number)) {
            return 0d;
        }
        BigDecimal numberD =new BigDecimal(number).setScale(scale, BigDecimal.ROUND_HALF_UP);
        //去掉小数点后面的0
        BigDecimal noZeros = numberD.stripTrailingZeros();
        return noZeros.doubleValue();
    }
 
    public static Integer dellNull(Integer number){
        if(ObjectUtils.isEmpty(number)) {
            return 0;
        }
        return number;
    }
 
    public static Double dellNull(Double number){
        if(ObjectUtils.isEmpty(number)) {
            return 0d;
        }
        return number;
    }
 
    public static void main(String args[]) {
        int a = 2*100;
        int b = 37;
 
//        String calResult = divideScale("2", "519", 3, BigDecimal.ROUND_HALF_UP);
//
//        System.out.println(integerDivideDelZero(1111, 100, 2));
        System.out.println(stringDelZero("202.23000000000002",2));
 
    }
 
 
}