预期为 BEGIN_ARRAY 但在第 1 行第 2 列处为 BEGIN_OBJECT [英] Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2

查看:34
本文介绍了预期为 BEGIN_ARRAY 但在第 1 行第 2 列处为 BEGIN_OBJECT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了以下错误.

无法解析 JSON,原因是:com.google.gson.JsonSyntaxException:java.lang.IllegalStateException: 预期 BEGIN_ARRAY 但被BEGIN_OBJECT 在第 1 行第 2 列

Failed to parse JSON due to: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2

服务器网址

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() {

    }
}

我该如何解决这个问题?

How could I solve this ?

推荐答案

您在评论中声明返回的 JSON 是这样的:

You state in the comments that the returned JSON is this:

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

你告诉 Gson 你有一个 Post 对象数组:

You're telling Gson that you have an array of Post objects:

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

你没有.JSON 正好代表一个 Post 对象,Gson 告诉你这一点.

You don't. The JSON represents exactly one Post object, and Gson is telling you that.

将您的代码更改为:

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

这篇关于预期为 BEGIN_ARRAY 但在第 1 行第 2 列处为 BEGIN_OBJECT的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆