JSON 和 Bean对象,List集合的转换

【1】json 转换成Bean對象:

ProductBean productBean = new Gson().fromJson(oneProductResponse.toString(), ProductBean.class);

【2】json 转换成List集合:

  List  mProductBeanList = (List)
   new  Gson().fromJson(productResponse.toString(),
                            new TypeToken>() {
                            }.getType());

你可能感兴趣的:(JSON 和 Bean对象,List集合的转换)