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)):预期的有效值(数字,字符串,数组, 对象,位于[来源:(String)“”;
中的'true','false'或'null')
如何解决此问题?
答案 0 :(得分:0)
我最终使用gson。
JsonObject jsonObject = new JsonParser().parse(json).getAsJsonObject();