如何将这个JSON字符串转化成list对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将这个JSON字符串转化成list对象相关的知识,希望对你有一定的参考价值。
参考技术A Java code//在www.json.org上公布了很多Java下的json解析工具,其中org.json和json-lib比较简单,两者使用上差不多。下面两段源代码是分别使用这两个工具解析和构造//JSON的演示程序。
//这是使用json-lib的程序:
import java.util.HashMap;
import java.util.Map;
import net.sf.json.JSONObject;
public class Test
public static void main(String[] args)
String json = "\"name\":\"reiz\"";
JSONObject jsonObj = JSONObject.fromObject(json);
String name = jsonObj.getString("name");
jsonObj.put("initial", name.substring(0, 1).toUpperCase());
String[] likes = new String[] "javascript", "Skiing", "Apple Pie" ;
jsonObj.put("likes", likes);
Map <String, String> ingredients = new HashMap <String, String>();
ingredients.put("apples", "3kg");
ingredients.put("sugar", "1kg");
ingredients.put("pastry", "2.4kg");
ingredients.put("bestEaten", "outdoors");
jsonObj.put("ingredients",ingredients);
System.out.println(jsonObj);
//这是使用org.json的程序:
import java.util.HashMap;
import java.util.Map;
import org.json.JSONException;
import org.json.JSONObject;
public class Test
public static void main(String[] args) throws JSONException
String json = "\"name\":\"reiz\"";
JSONObject jsonObj = new JSONObject(json);
String name = jsonObj.getString("name");
jsonObj.put("initial", name.substring(0, 1).toUpperCase());
String[] likes = new String[] "JavaScript", "Skiing", "Apple Pie" ;
jsonObj.put("likes", likes);
Map <String, String> ingredients = new HashMap <String, String>();
ingredients.put("apples", "3kg");
ingredients.put("sugar", "1kg");
ingredients.put("pastry", "2.4kg");
ingredients.put("bestEaten", "outdoors");
jsonObj.put("ingredients", ingredients);
System.out.println(jsonObj);
System.out.println(jsonObj);
//两者的使用几乎是相同的,但org.json比json-lib要轻量得多,前者没有任何依赖,而后者要依赖ezmorph和commons的lang、logging、beanutils、collections等//组件。
如何将字符串转换成javaBean
package com.allcam.system.utils;import com.fasterxml.jackson.databind.ObjectMapper;
public class JSonUtils
static ObjectMapper objectMapper;
/**
* 使用泛型方法,把json字符串转换为相应的JavaBean对象。
* (1)转换为普通JavaBean:readValue(json,Student.class)
* (2)转换为List:readValue(json,List.class).但是如果我们想把json转换为特定类型的List,比如List<Student>,就不能直接进行转换了。
* 因为readValue(json,List.class)返回的其实是List<Map>类型,你不能指定readValue()的第二个参数是List<Student>.class,所以不能直接转换。
* 我们可以把readValue()的第二个参数传递为Student[].class.然后使用Arrays.asList();方法把得到的数组转换为特定类型的List。
* (3)转换为Map:readValue(json,Map.class)
* 我们使用泛型,得到的也是泛型
*
* @param content 要转换的JavaBean类型
* @param valueType 原始json字符串数据
* @return JavaBean对象
*/
public static <T> T readValue(String content, Class<T> valueType)
if (objectMapper == null)
objectMapper = new ObjectMapper();
try
return objectMapper.readValue(content, valueType);
catch (Exception e)
e.printStackTrace();
return null;
/**
* 把JavaBean转换为json字符串
* (1)普通对象转换:toJson(Student)
* (2)List转换:toJson(List)
* (3)Map转换:toJson(Map)
* 我们发现不管什么类型,都可以直接传入这个方法
*
* @param object JavaBean对象
* @return json字符串
*/
public static String toJSon(Object object)
if (objectMapper == null)
objectMapper = new ObjectMapper();
try
return objectMapper.writeValueAsString(object);
catch (Exception e)
e.printStackTrace();
return null;
参考技术A JsonConvertUtil.beanToJson(你要转的对象);
以上是关于如何将这个JSON字符串转化成list对象的主要内容,如果未能解决你的问题,请参考以下文章