码迷,mamicode.com
首页 > 移动开发 > 详细

ObjectMapper

时间:2014-11-20 18:35:31      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:des   io   ar   sp   java   for   on   bs   ad   

    String jsonStr="";

    String content=jsonStr;

    ObjectMapper objectMapper = new ObjectMapper();
            objectMapper.configure(DeserializationConfig.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY, true);
            JavaType javaType = objectMapper.getTypeFactory().constructParametricType(SearchResult.class,SearchProduct.class);
            SearchResult<SearchProduct> searchResult = objectMapper.readValue(content, javaType);
            List<ProductView> datas = new ArrayList<ProductView>();
            for(SearchProduct product:searchResult.getResultList()){

     }

 

public class SearchResult<T> {
    private int totalItem;
    private List<T> resultList;
    public int getTotalItem() {
        return totalItem;
    }
    public void setTotalItem(int totalItem) {
        this.totalItem = totalItem;
    }
    public List<T> getResultList() {
        return resultList;
    }
    public void setResultList(List<T> resultList) {
        this.resultList = resultList;
    }
    
}

ObjectMapper

标签:des   io   ar   sp   java   for   on   bs   ad   

原文地址:http://www.cnblogs.com/yqlwl66/p/4111041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!