My webservice is giving me this format of Date: 1462575665220
.
How can I deserialize this using GSON?
I think that I have to use something like this:
new GsonBuilder().setDateFormat("dd-MM-yyyy HH:mm:ss").create();
But I dont know what kind of format is it. Can I deserialize it or I have to change something in the Webservice?
Sorry for bad english, I hope you understand.