I use Json String like this,json= [{"id":"1","label":"2","code":"3"},{"id":"4","label":"5","code":"6"}]I try to convert it to Java Object this way, using Gson,and a Pojo called Item.java which contains id, label and code and getter setter fields.String id; String label; String code; //getter setters...