1. ホーム
  2. java

[解決済み] 1行目2列目でBEGIN_ARRAYを期待したが、BEGIN_OBJECTだった。

2022-02-24 20:44:17

質問

以下のようなエラーが発生します。

<ブロッククオート

com.google.gson.JsonSyntaxException のため、JSONのパースに失敗しました。 java.lang.IllegalStateException: BEGIN_ARRAYを期待していたのに、BEGIN_ARRAYでした。 1行目2列目のBEGIN_OBJECT

サーバーのURL

public static final String SERVER_URL = "https://maps.googleapis.com/maps/api/timezone/json?location=-37.8136,144.9631&timestamp=1389162695&sensor=false";

リクエストを実行する

    try {
        // Create an HTTP client
        HttpClient client = HttpClientBuilder.create().build();
        HttpPost post = new HttpPost(SERVER_URL);

        // Perform the request and check the status code
        HttpResponse response = client.execute(post);
        StatusLine statusLine = response.getStatusLine();
        if (statusLine.getStatusCode() == 200) {
            HttpEntity entity = response.getEntity();
            InputStream content = entity.getContent();

            try {
                // Read the server response and attempt to parse it as JSON
                Reader reader = new InputStreamReader(content);

                GsonBuilder gsonBuilder = new GsonBuilder();
                gsonBuilder.setDateFormat("M/d/yy hh:mm a");
                Gson gson = gsonBuilder.create();
                List<Post> postsList = Arrays.asList(gson.fromJson(reader,
                        Post[].class));

                content.close();

                for (Post p : postsList) {
                    System.out.println(p.timeZoneId);
                }

            } catch (Exception ex) {
                System.out.println("Failed to parse JSON due to: " + ex);
            }
        } else {
            System.out.println("Server responded with status code: "
                    + statusLine.getStatusCode());
        }
    } catch (Exception ex) {
        System.out
                .println("Failed to send HTTP POST request due to: " + ex);
    }

ポストクラス

public class Post {
    public String timeZoneId;
    public Post() {

    }
}

どうすればいいのでしょうか?

どのように解決するのですか?

コメントで、返されたJSONがこれだと書いてありますね。

{ 
  "dstOffset" : 3600, 
  "rawOffset" : 36000, 
  "status" : "OK", 
  "timeZoneId" : "Australia/Hobart", 
  "timeZoneName" : "Australian Eastern Daylight Time" 
}

の配列があることをGsonに伝えているのです。 Post オブジェクトを作成します。

List<Post> postsList = Arrays.asList(gson.fromJson(reader,
                    Post[].class));

しないんですね。JSONが表すのは、まさに1つの Post オブジェクトがあり、Gsonはそれをあなたに伝えているのです。

というコードに変更します。

Post post = gson.fromJson(reader, Post.class);