DateUtil.parseUTC支持只有时分的格式

This commit is contained in:
Looly 2022-08-15 09:11:53 +08:00
parent 993f94f9f3
commit 92ca87a8fc
4 changed files with 22 additions and 2 deletions

View File

@ -3,10 +3,11 @@
-------------------------------------------------------------------------------------------------------------
# 5.8.6.M1 (2022-08-11)
# 5.8.6.M1 (2022-08-15)
### 🐣新特性
* 【core 】 CollUtil新增addIfAbsent方法pr#750@Gitee
* 【core 】 DateUtil.parseUTC支持只有时分的格式issue#I5M6DP@Gitee
*
### 🐞Bug修复
* 【http 】 修复https下可能的Patch、Get请求失效问题issue#I3Z3DH@Gitee

View File

@ -834,7 +834,7 @@ public class DateUtil extends CalendarUtil {
if (utcString == null) {
return null;
}
int length = utcString.length();
final int length = utcString.length();
if (StrUtil.contains(utcString, 'Z')) {
if (length == DatePattern.UTC_PATTERN.length() - 4) {
// 格式类似2018-09-13T05:34:31Z-4表示减去4个单引号的长度
@ -871,6 +871,9 @@ public class DateUtil extends CalendarUtil {
if (length == DatePattern.UTC_SIMPLE_PATTERN.length() - 2) {
// 格式类似2018-09-13T05:34:31
return parse(utcString, DatePattern.UTC_SIMPLE_FORMAT);
} else if (length == DatePattern.UTC_SIMPLE_PATTERN.length() - 5) {
// 格式类似2018-09-13T05:34
return parse(utcString + ":00", DatePattern.UTC_SIMPLE_FORMAT);
} else if (StrUtil.contains(utcString, CharUtil.DOT)) {
// 可能为 2021-03-17T06:31:33.99
return parse(utcString, DatePattern.UTC_SIMPLE_MS_FORMAT);

View File

@ -990,4 +990,11 @@ public class CollUtilTest {
super(name, age);
}
}
@Test
public void getFirstTest(){
final List<?> nullList = null;
final Object first = CollUtil.getFirst(nullList);
Assert.assertNull(first);
}
}

View File

@ -695,6 +695,15 @@ public class DateUtilTest {
Assert.assertEquals("2021-03-30 12:56:51", parse.toString());
}
@Test
public void parseUTCTest3() {
// issue#I5M6DP
final String dateStr = "2022-08-13T09:30";
final DateTime dateTime = DateUtil.parse(dateStr);
Assert.assertNotNull(dateTime);
Assert.assertEquals("2022-08-13 09:30:00", dateTime.toString());
}
@Test
public void parseCSTTest() {
final String dateStr = "Wed Sep 16 11:26:23 CST 2009";