public void testJson() {
ObjectMapper mapper = new ObjectMapper();
try {
String htmlString = mapper.readValue("<!Doctype>", String.class);
} catch (IOException e) {
e.printStackTrace();
}
}
com.fasterxml.jackson.core.JsonParseException:意外的字符('<'(代码 60)):在 [Source] 处需要一个有效值(数字、字符串、数组、对象、'true'、'false' 或 'null') : (细绳)””;
如何解决这个问题?
蓝山帝景
相关分类