无法使用objectmapper从html字符串读取值

时间:2019-09-26 17:44:15

标签: java fasterxml

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')

如何解决此问题?

1 个答案:

答案 0 :(得分:0)

我最终使用gson。

JsonObject jsonObject = new JsonParser().parse(json).getAsJsonObject();