将 JSON 字符串转换为 Map
将 JSON 字符串转换为 Map
相反,正确的方法是使用 ObjectMapper 类。具体方法如下:
<code class="java">ObjectMapper mapper = new ObjectMapper(); TypeReference<Map<String, String>> typeRef = new TypeReference<Map<String, String>>() {}; Map<String, String> propertyMap = mapper.readValue(properties, typeRef);</code>
ObjectMapper 类提供了读取和写入 JSON 数据的方法。 readValue() 方法接受输入源(例如文件、流或字符串)和指定输出对象所需类型的 TypeReference 对象。
此外,Jackson JSON 还提供了一种本机方式将 JSON 字符串转换为 Java 对象,无需进行转换:
<code class="java">public void testJackson() throws IOException { ObjectMapper mapper = new ObjectMapper(); File from = new File("albumnList.txt"); TypeReference<HashMap<String,Object>> typeRef = new TypeReference<HashMap<String,Object>>() {}; HashMap<String,Object> o = mapper.readValue(from, typeRef); System.out.println("Got " + o); } </code>
此方法涉及使用 TypeReference 对象指定所需的类型,该对象可以使用匿名内部类创建。然后,ObjectMapper 可以直接将 JSON 字符串转换为所需的类型。
以上是如何使用 Jackson JSON 将 JSON 字符串转换为地图?的详细内容。更多信息请关注PHP中文网其他相关文章!