こんにちは、みんな !gson1.1 jarを使用してJsonタイプに解析する必要があるListオブジェクトがありますが、タイプの不一致エラーが発生しています..ここに私のコードがあります..
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;
}
Plz みんな助けてくれ 事前にサンクス..