web-dev-qa-db-fra.com

Gson - Date insaisissable

Je dois lier un objet Json avec un objet Java qui a une date. Le format de date sur mon Json est le suivant:

2013-01-04T10: 50: 26 + 0000

Et j'utilise le GsonBulder comme suit:

Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").create();

mais je reçois l'exception suivante:

The RuntimeException could not be mapped to a response, re-throwing to the HTTP container
com.google.gson.JsonSyntaxException: 2013-01-04T10:50:26+0000
at com.google.gson.internal.bind.DateTypeAdapter.deserializeToDate(DateTypeAdapter.Java:81)
.....
Caused by: Java.text.ParseException: Unparseable date: "2013-01-04T10:50:26+0000"
at Java.text.DateFormat.parse(DateFormat.Java:337)
at com.google.gson.internal.bind.DateTypeAdapter.deserializeToDate(DateTypeAdapter.Java:79)

J'essaie de charger cette demande avec Gson:

https://graph.facebook.com/me?fields=id,username,email,link,updated_time&access_token=accessToken

Et la réponse est

{"id":"12345","username":"myusername","email":"myemail\u0040yahoo.it","link":"http:\/\/www.facebook.com\/mysusername","updated_time":"2013-01-04T10:50:26+0000"}
24
ddelizia

La désérialisation échoue, car les guillemets dans la chaîne json sont manquants.

Les oeuvres suivantes:

    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);

Production:

date: dim 10 fév 13:45:30 CET 2013

HTH

Modifier l'exemple complet:

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);
}

}

44
dominik