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') : (细绳)””;如何解决这个问题?
1 回答
蓝山帝景
TA贡献1843条经验 获得超7个赞
我最终使用了 gson。
JsonObject jsonObject = new JsonParser().parse(json).getAsJsonObject();
添加回答
举报
0/150
提交
取消