json - Gson().fromJson(jsonResult, Myobject.class) return values in 0's -
i have json
{"fechaupdateid":1,"fechasegundos":635902782941643690,"fechasegundosbc":635902779020935030}
i execute command convert object
fechaupdate dto = new gson().fromjson(json, fechaupdate.class);
but got result
this fechaupdate class
public class fechaupdate { public int getfechaupdateid() { return fechaupdateid; } public void setfechaupdateid(int fechaupdateid) { this.fechaupdateid = fechaupdateid; } public long getfechasegundosbc() { return fechasegundosbc; } public void setfechasegundosbc(long fechasegundosbc) { this.fechasegundosbc = fechasegundosbc; } public long getfechasegundos() { return fechasegundos; } public void setfechasegundos(long fechasegundos) { this.fechasegundos = fechasegundos; } private int fechaupdateid ; private long fechasegundos ; private long fechasegundosbc; }
solved
if see private attributes are
private int fechaupdateid ; private long fechasegundos ; private long fechasegundosbc;
i change them by
private int fechaupdateid ; private long fechasegundos ; private long fechasegundosbc;
and generate getter , setters again. diference first letter uppercase.
Comments
Post a Comment