大家好 !我有一个 List 对象,我需要使用 gson1.1 jar 将其解析为 Json 类型,但它给出了类型不匹配错误..这是我的代码..
public static List<Product> getCartList() {
List<Product> cartList = new Vector<Product>(cartMap.keySet().size());
for(Product p : cartMap.keySet()) {
cartList.add(p);
}
Gson gson = new Gson();
// convert your list to json
String jsonCartList = gson.toJson(cartList);
// print your generated json
System.out.println("jsonCartList: " + jsonCartList);
return jsonCartList;
}
请大家提前帮我谢谢..