mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复DataSize.parse(size)不支持空格问题
This commit is contained in:
parent
733c043c0a
commit
85feecc9e9
@ -14,12 +14,10 @@
|
|||||||
* 【cron 】 修复Cron表达式range解析错误问题(issue#I82CSH@Gitee)
|
* 【cron 】 修复Cron表达式range解析错误问题(issue#I82CSH@Gitee)
|
||||||
* 【core 】 修复VersionComparator在极端数据排序时候违反了自反性问题(issue#I81N3H@Gitee)
|
* 【core 】 修复VersionComparator在极端数据排序时候违反了自反性问题(issue#I81N3H@Gitee)
|
||||||
* 【json 】 修复JSONStrFormatter:format函数对于转义符号处理逻辑错误问题(issue#I84V6I@Gitee)
|
* 【json 】 修复JSONStrFormatter:format函数对于转义符号处理逻辑错误问题(issue#I84V6I@Gitee)
|
||||||
<<<<<<< HEAD
|
|
||||||
* 【core 】 修复特定情况下BiMap覆盖Value后,仍能通过旧Value查询到Key问题(issue#I88R5M@Gitee)
|
* 【core 】 修复特定情况下BiMap覆盖Value后,仍能通过旧Value查询到Key问题(issue#I88R5M@Gitee)
|
||||||
=======
|
|
||||||
* 【core 】 修复aop的afterException无法生效问题(issue#3329@Github)
|
* 【core 】 修复aop的afterException无法生效问题(issue#3329@Github)
|
||||||
* 【core 】 修复TypeUtil.getClass方法强转报错问题(pr#1092@Github)
|
* 【core 】 修复TypeUtil.getClass方法强转报错问题(pr#1092@Github)
|
||||||
>>>>>>> fd9e1efa2860ded5cf2d1be5954fd87a2a5830fe
|
* 【core 】 修复DataSize.parse(size)不支持空格问题(issue#I88Z4Z@Gitee)
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
# 5.8.22(2023-09-13)
|
# 5.8.22(2023-09-13)
|
||||||
|
@ -185,7 +185,7 @@ public final class DataSize implements Comparable<DataSize> {
|
|||||||
public static DataSize parse(CharSequence text, DataUnit defaultUnit) {
|
public static DataSize parse(CharSequence text, DataUnit defaultUnit) {
|
||||||
Assert.notNull(text, "Text must not be null");
|
Assert.notNull(text, "Text must not be null");
|
||||||
try {
|
try {
|
||||||
final Matcher matcher = PATTERN.matcher(text);
|
final Matcher matcher = PATTERN.matcher(StrUtil.cleanBlank(text));
|
||||||
Assert.state(matcher.matches(), "Does not match data size pattern");
|
Assert.state(matcher.matches(), "Does not match data size pattern");
|
||||||
|
|
||||||
final DataUnit unit = determineDataUnit(matcher.group(3), defaultUnit);
|
final DataUnit unit = determineDataUnit(matcher.group(3), defaultUnit);
|
||||||
|
@ -60,4 +60,11 @@ public class DataSizeUtilTest {
|
|||||||
format = DataSizeUtil.format(1024L * 1024 * 1024 * 1024);
|
format = DataSizeUtil.format(1024L * 1024 * 1024 * 1024);
|
||||||
Assert.assertEquals("1 TB", format);
|
Assert.assertEquals("1 TB", format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void issueI88Z4ZTest() {
|
||||||
|
final String size = DataSizeUtil.format(10240000);
|
||||||
|
final long bytes = DataSize.parse(size).toBytes();
|
||||||
|
Assert.assertEquals(10244587, bytes);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user