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

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') : (细绳)””;


如何解决这个问题?


12345678_0001
浏览 90回答 1
1回答

蓝山帝景

我最终使用了 gson。JsonObject&nbsp;jsonObject&nbsp;=&nbsp;new&nbsp;JsonParser().parse(json).getAsJsonObject();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java