JsonオブジェクトをJavaオブジェクトにバインドする必要があります。JsonのDate形式は次のとおりです。
2013-01-04T10:50:26 + 0000
そして、私はGsonBulderを次のように使用しています:
Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").create();
しかし、私は次の例外を取得しています:
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)
私はGsonでこのリクエストをロードしようとしています:
https://graph.facebook.com/me?fields=id,username,email,link,updated_time&access_token=accessToken
そして応答は
{"id":"12345","username":"myusername","email":"myemail\u0040yahoo.it","link":"http:\/\/www.facebook.com\/mysusername","updated_time":"2013-01-04T10:50:26+0000"}
JSON文字列内の引用符が欠落しているため、逆シリアル化は失敗します。
次の作品:
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);
出力:
日付:2013年2月10日13:45:30 CET
HTH
完全な例を編集:
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);
}
}