i got the response from server i stored into the string
{"serviceType":"IMAGE","parameters":[[{"itemId":"it003376","itemNameInEng":"8th Chennai International Film Festival Photos","itemSmallImage":"http://122.183.217.134:8080/sivajitv/photos/20101216001017.jpg","count":"110"}]]}
String response
//using gson i try to parse this
GsonBuilder gsonb = new GsonBuilder();
Gson gson = gsonb.create();
JSONObject j =new JSONObject(res);
ResponseMessage r_m = gson.fromJson(j.toString(), ResponseMessage.class);
System.out.println("parameters : " + r_m);
//this is my responsemessage class
import java.io.Serializable;
import java.util.List;
public class ResponseMessage implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
public List<Object> parameters;
ServiceType serviceType;
/**
* @return the parameters
*/
public List<Object> getParameters() {
return parameters;
}
/**
* @param parameters the parameters to set
*/
public void setParameters(List<Object> parameters) {
this.parameters = parameters;
}
/**
* @return the serviceType
*/
public ServiceType getServiceType() {
return serviceType;
}
/**
* @param serviceType the serviceType to set
*/
public void setServiceType(ServiceType serviceType) {
this.serviceType = serviceType;
}
}
when i get the parameter from response it shows error
03-16 15:50:53.840: WARN/System.err(343): com.google.gson.JsonParseException: Expecting array but found object: java.lang.Object@4378c930