Gson - Unparseable date
The Deserialization fails, because the quotes within the json String are missing.
The following works:
Gson gson= new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").create();
String date = "\"2013-02-10T13:45:30+0100\"";
Date test = gson.fromJson(date, Date.class);
System.out.println("date:" + test);
Output:
date:Sun Feb 10 13:45:30 CET 2013
HTH
Edit Complete Example:
import java.util.Date;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class FacebookResponse {
int id;
String username;
String email;
String link;
Date updated_time;
@Override
public String toString() {
return "ID: " + id + " username: " + username + " email: " + email + " link: " + link + " updated_time: " + updated_time;
};
/**
* @param args
*/
public static void main(String[] args) {
String json = "{\"id\":\"12345\",\"username\":\"myusername\",\"email\":\"myemail\u0040yahoo.it\",\"link\":\"http://www.facebook.com/mysusername\",\"updated_time\":\"2013-01-04T10:50:26+0000\"}";
Gson gson= new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").create();
FacebookResponse response = gson.fromJson(json, FacebookResponse.class);
System.out.println(response);
}
}