Merge pull request #3664 from tian-pengfei/v5-master-contentType

增加ContentType#get识别的准确率。
This commit is contained in:
Golden Looly 2024-07-31 00:18:13 +08:00 committed by GitHub
commit 2e51604cb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -120,6 +120,7 @@ public enum ContentType {
public static ContentType get(String body) {
ContentType contentType = null;
if (StrUtil.isNotBlank(body)) {
body = StrUtil.trim(body);
char firstChar = body.charAt(0);
switch (firstChar) {
case '{':

View File

@ -16,4 +16,13 @@ public class ContentTypeTest {
String result = ContentType.build(ContentType.JSON, CharsetUtil.CHARSET_UTF_8);
Assert.assertEquals("application/json;charset=UTF-8", result);
}
@Test
public void testGetWithLeadingSpace() {
String json = " {\n" +
" \"name\": \"hutool\"\n" +
" }";
ContentType contentType = ContentType.get(json);
Assert.assertEquals(ContentType.JSON, contentType);
}
}