jackson实现json数据与对象, 集合之间的转换

     前面列举了Gson和fastjson处理json格式数据的具体用法,以下介绍jackson如何简单处理json格式数据,还是延用前面文章中的实体类Product.

     使用jackson需要引入以下第三方jar包:

package Exercise1_jackson;

import java.io.IOException;
import java.util.List;

import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;

/**
 * @author huangxinyi
 * jackson实现对象和json,集合和json之间的互相转换
 * 
 */
public class Test {
	
	private ObjectMapper objectMapper = new ObjectMapper();
	
	@org.junit.Test
	public void test(){
		String jsonArr = "[{\"brand\":\"联想\",\"type\":\"电脑\",\"color\":\"白色\",\"price\":\"3000\"},"+
                "{\"brand\":\"小米\",\"type\":\"手机\",\"color\":\"黑色\",\"price\":\"2500\"},"+
                "{\"brand\":\"华为\",\"type\":\"手机\",\"color\":\"白色\",\"price\":\"2000\"},"+
                "{\"brand\":\"戴尔\",\"type\":\"电脑\",\"color\":\"蓝色\",\"price\":\"4000\"},"+
                "{\"brand\":\"苹果\",\"type\":\"手机\",\"color\":\"红色\",\"price\":\"5000\"}]";
			
		try {
			//json转集合
			List<Product> plist = objectMapper.readValue(jsonArr, new TypeReference<List<Product>>(){});
			System.out.println(plist);
			
			//json转对象
			Product p = objectMapper.readValue("{\"brand\":\"小米\",\"type\":\"手机\",\"color\":\"黑色\",\"price\":\"2500\"}", Product.class);
			System.out.println(p);
			
			//对象转json
			String json_p = objectMapper.writeValueAsString(new Product("小米","手机","黑色",2500));
			System.out.println(json_p);
			
			//集合转json
			String json_list = objectMapper.writeValueAsString(plist);
			System.out.println(json_list);
			
		} catch (JsonParseException e) {
			e.printStackTrace();
		} catch (JsonMappingException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

猜你喜欢

转载自blog.csdn.net/pandalovey/article/details/80463542