提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.framework.common.util.number; |
H |
2 |
|
|
3 |
import cn.hutool.core.util.NumberUtil; |
|
4 |
import cn.hutool.core.util.StrUtil; |
|
5 |
|
|
6 |
import java.math.BigDecimal; |
|
7 |
|
|
8 |
/** |
|
9 |
* 数字的工具类,补全 {@link cn.hutool.core.util.NumberUtil} 的功能 |
|
10 |
* |
|
11 |
* @author iailab |
|
12 |
*/ |
|
13 |
public class NumberUtils { |
|
14 |
|
|
15 |
public static Long parseLong(String str) { |
|
16 |
return StrUtil.isNotEmpty(str) ? Long.valueOf(str) : null; |
|
17 |
} |
|
18 |
|
|
19 |
public static Integer parseInt(String str) { |
|
20 |
return StrUtil.isNotEmpty(str) ? Integer.valueOf(str) : null; |
|
21 |
} |
|
22 |
|
|
23 |
/** |
|
24 |
* 通过经纬度获取地球上两点之间的距离 |
|
25 |
* |
|
26 |
* 参考 <<a href="https://gitee.com/dromara/hutool/blob/1caabb586b1f95aec66a21d039c5695df5e0f4c1/hutool-core/src/main/java/cn/hutool/core/util/DistanceUtil.java">DistanceUtil</a>> 实现,目前它已经被 hutool 删除 |
|
27 |
* |
|
28 |
* @param lat1 经度1 |
|
29 |
* @param lng1 纬度1 |
|
30 |
* @param lat2 经度2 |
|
31 |
* @param lng2 纬度2 |
|
32 |
* @return 距离,单位:千米 |
|
33 |
*/ |
|
34 |
public static double getDistance(double lat1, double lng1, double lat2, double lng2) { |
|
35 |
double radLat1 = lat1 * Math.PI / 180.0; |
|
36 |
double radLat2 = lat2 * Math.PI / 180.0; |
|
37 |
double a = radLat1 - radLat2; |
|
38 |
double b = lng1 * Math.PI / 180.0 - lng2 * Math.PI / 180.0; |
|
39 |
double distance = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) |
|
40 |
+ Math.cos(radLat1) * Math.cos(radLat2) |
|
41 |
* Math.pow(Math.sin(b / 2), 2))); |
|
42 |
distance = distance * 6378.137; |
|
43 |
distance = Math.round(distance * 10000d) / 10000d; |
|
44 |
return distance; |
|
45 |
} |
|
46 |
|
|
47 |
/** |
|
48 |
* 提供精确的乘法运算 |
|
49 |
* |
|
50 |
* 和 hutool {@link NumberUtil#mul(BigDecimal...)} 的差别是,如果存在 null,则返回 null |
|
51 |
* |
|
52 |
* @param values 多个被乘值 |
|
53 |
* @return 积 |
|
54 |
*/ |
|
55 |
public static BigDecimal mul(BigDecimal... values) { |
|
56 |
for (BigDecimal value : values) { |
|
57 |
if (value == null) { |
|
58 |
return null; |
|
59 |
} |
|
60 |
} |
|
61 |
return NumberUtil.mul(values); |
|
62 |
} |
|
63 |
|
|
64 |
} |