mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 08:37:26 +08:00
增加ContentType#get识别的准确率。
This commit is contained in:
parent
95a363cc74
commit
eb0b48bead
@ -120,6 +120,7 @@ public enum ContentType {
|
|||||||
public static ContentType get(String body) {
|
public static ContentType get(String body) {
|
||||||
ContentType contentType = null;
|
ContentType contentType = null;
|
||||||
if (StrUtil.isNotBlank(body)) {
|
if (StrUtil.isNotBlank(body)) {
|
||||||
|
body = StrUtil.trim(body);
|
||||||
char firstChar = body.charAt(0);
|
char firstChar = body.charAt(0);
|
||||||
switch (firstChar) {
|
switch (firstChar) {
|
||||||
case '{':
|
case '{':
|
||||||
|
@ -16,4 +16,13 @@ public class ContentTypeTest {
|
|||||||
String result = ContentType.build(ContentType.JSON, CharsetUtil.CHARSET_UTF_8);
|
String result = ContentType.build(ContentType.JSON, CharsetUtil.CHARSET_UTF_8);
|
||||||
Assert.assertEquals("application/json;charset=UTF-8", result);
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user