次のjsonデータを逆シリアル化したいhttps://mtgox.com/code/data/getDepth.php。私は間違いを続ける。以下は私のコードです。多次元配列を逆シリアル化するGSON
Gson gson = new Gson();
String json = readHTTPS(new URL("https://mtgox.com/code/data/getDepth.php"));
AskBids askBids = gson.fromJson(json, AskBids.class);
のような私のAskBidsクラスを見て:期待したオブジェクトが見つかりました::
public class AskBids {
private String [] [] asks;
private String [] [] bids;
public AskBids(){}
}
エラーがcom.google.gson.JsonParseExceptionがされますされ
任意のアイデア "尋ねますか"?ありがとう