我正在开发 android 应用程序,我正在使用 gson 来解析 json 响应。我的 json 响应看起来像
[{"customerid":"abc","customername":"abc","location":null}
,{"customerid":"xyz","customername":"xyz","location":null}]
解析此响应的类如下所示:
public class CustomerInfo
{
@SerializedName("customerid")
public String customerid;
@SerializedName("customername")
public String customername;
@SerializedName("location")
public String location;
public CustomerInfo()
{}
}
我尝试了以下方式:
Gson gson = new Gson();
List<CustomerInfo> customers = (List<CustomerInfo>)gson.fromJson(result,CustomerInfo.class);
但它不适合我。这个怎么做。需要帮忙。谢谢你。