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

enter image description here

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

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -