From eb0b48bead93fdba72ad785cf9422c61dc88ca2d Mon Sep 17 00:00:00 2001 From: tiandy tian Date: Fri, 19 Jul 2024 18:21:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0ContentType#get=E8=AF=86?= =?UTF-8?q?=E5=88=AB=E7=9A=84=E5=87=86=E7=A1=AE=E7=8E=87=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/cn/hutool/http/ContentType.java | 1 + .../src/test/java/cn/hutool/http/ContentTypeTest.java | 9 +++++++++ 2 files changed, 10 insertions(+) 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); + } }