diff --git a/hutool-http/src/main/java/cn/hutool/http/ContentType.java b/hutool-http/src/main/java/cn/hutool/http/ContentType.java index c8132b90a..6b57681b0 100644 --- a/hutool-http/src/main/java/cn/hutool/http/ContentType.java +++ b/hutool-http/src/main/java/cn/hutool/http/ContentType.java @@ -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 '{': diff --git a/hutool-http/src/test/java/cn/hutool/http/ContentTypeTest.java b/hutool-http/src/test/java/cn/hutool/http/ContentTypeTest.java index 1d03c44eb..4a50da82f 100644 --- a/hutool-http/src/test/java/cn/hutool/http/ContentTypeTest.java +++ b/hutool-http/src/test/java/cn/hutool/http/ContentTypeTest.java @@ -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); + } }