mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add hex support
This commit is contained in:
parent
3115f0dad8
commit
0eb5c84ba8
@ -3,7 +3,7 @@
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
# 5.8.1.M1 (2022-05-16)
|
||||
# 5.8.1 (2022-05-16)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 BooleanUtil增加toBooleanObject方法(issue#I56AG3@Gitee)
|
||||
@ -12,6 +12,7 @@
|
||||
* 【core 】 新增CastUtil(pr#2313@Github)
|
||||
* 【core 】 ByteUtil新增bytesToShort重载(issue#I57FA7@Gitee)
|
||||
* 【core 】 ReflectUtil.invoke方法抛出运行时异常增加InvocationTargetRuntimeException(issue#I57GI2@Gitee)
|
||||
* 【core 】 NumberUtil.parseNumber支持16进制(issue#2328@Github)
|
||||
*
|
||||
### 🐞Bug修复
|
||||
* 【core 】 MapUtil.map对null友好,且修复了测试用例中分组问题(pr#614@Gitee)
|
||||
|
@ -2524,6 +2524,11 @@ public class NumberUtil {
|
||||
* @since 4.1.15
|
||||
*/
|
||||
public static Number parseNumber(String numberStr) throws NumberFormatException {
|
||||
if(StrUtil.startWithIgnoreCase(numberStr, "0x")){
|
||||
// 0x04表示16进制数
|
||||
return Long.parseLong(numberStr.substring(2), 16);
|
||||
}
|
||||
|
||||
try {
|
||||
final NumberFormat format = NumberFormat.getInstance();
|
||||
if (format instanceof DecimalFormat) {
|
||||
|
@ -292,6 +292,13 @@ public class NumberUtilTest {
|
||||
Assert.assertEquals(1482L, v2.longValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void parseHexNumberTest() {
|
||||
// 千位分隔符去掉
|
||||
final int v1 = NumberUtil.parseNumber("0xff").intValue();
|
||||
Assert.assertEquals(255, v1);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void parseLongTest() {
|
||||
long number = NumberUtil.parseLong("0xFF");
|
||||
|
Loading…
Reference in New Issue
Block a user