java - 应为 BEGIN_ARRAY,但在第 1 行第 5 列为 STRING

标签 java arrays json gson converters

我是 Java/Android 新手,我正在尝试创建一个类来从 url https://viacep.com.br/ws/69050110/json/ 查询基本的其余 json。 json返回是:

{ “cep”:“69050-110”, "logradouro": "Conjunto Tocantins", “补充”:“”, "bairro": "查帕达", "localidade": "马瑙斯", “uf”:“上午”, "unidade": "", “ibge”:“1302603”, “吉亚”:“” }

我在 eclipse neon 中的代码是

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package ViaCEP_WebService;

import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.lang.reflect.Type;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;

import javax.net.ssl.HttpsURLConnection;

import org.codehaus.jackson.annotate.JsonPropertyOrder;

import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;

/**
 *
 * @author marcelosiedler
 */
public class HttpExemplo2 {

    private final String USER_AGENT = "Mozilla/5.0";

    public static void main(String[] args) throws Exception {

        HttpExemplo2 http = new HttpExemplo2();
    //http.sendGet();

        System.out.println("Testing 1 - Send Http GET request");
        String WSChamada;
        String tipo;
        String cep;
        int array = 5;

        //WSChamada = "http://192.168.0.245:8080/datasnap/rest/TContatoController/ParcelaS/BRAA-007809-004";

        tipo = "json";
        cep = "69050110";

        WSChamada = "http://viacep.com.br/ws/"+cep+"/"+tipo;

        String json = http.sendGet(WSChamada);


        System.out.println(json); // imprimme padrão 

        // criando array de json para gson para impresão
        Gson g = new Gson();
        ConsultaWSCep c = new ConsultaWSCep();

        Type ceptype = new TypeToken<List<ConsultaWSCep>>() {}.getType();
        List<ConsultaWSCep> list = g.fromJson(WSChamada, ceptype);

        System.out.println(c.getCep());

        //c = g.fromJson(json, ConsultaWSCep);

        //System.out.println(c.getCep());

        //System.out.println("\nTesting 2 - Send Http POST request");
        //http.sendPost();

    }


    // HTTP GET request
    private String sendGet(String url) throws Exception {


        URL obj = new URL(url);
        HttpURLConnection con = (HttpURLConnection) obj.openConnection();

        // optional default is GET
        con.setRequestMethod("GET");

        //add request header
        con.setRequestProperty("User-Agent", USER_AGENT);

        int responseCode = con.getResponseCode();
        System.out.println("\nSending 'GET' request to URL : " + url);
        System.out.println("Response Code : " + responseCode);

        BufferedReader in = new BufferedReader(
                new InputStreamReader(con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();

        //print result
        //System.out.println(response.toString());
        return response.toString();
    }

    // HTTP POST request
    private void sendPost() throws Exception {

        String url = "https://selfsolve.apple.com/wcResults.do";
        URL obj = new URL(url);
        HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();

        //add reuqest header
        con.setRequestMethod("POST");
        con.setRequestProperty("User-Agent", USER_AGENT);
        con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");

        String urlParameters = "sn=C02G8416DRJM&cn=&locale=&caller=&num=12345";

        // Send post request
        con.setDoOutput(true);
        DataOutputStream wr = new DataOutputStream(con.getOutputStream());
        wr.writeBytes(urlParameters);
        wr.flush();
        wr.close();

        int responseCode = con.getResponseCode();
        System.out.println("\nSending 'POST' request to URL : " + url);
        System.out.println("Post parameters : " + urlParameters);
        System.out.println("Response Code : " + responseCode);

        BufferedReader in = new BufferedReader(
                new InputStreamReader(con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();

        //print result
        System.out.println(response.toString());

    }

}

但它返回一个错误给我:

Testing 1 - Send Http GET request

Sending 'GET' request to URL : http://viacep.com.br/ws/69050110/json
Response Code : 200
{  "cep": "69050-110",  "logradouro": "Conjunto Tocantins",  "complemento": "",  "bairro": "Chapada",  "localidade": "Manaus",  "uf": "AM",  "unidade": "",  "ibge": "1302603",  "gia": ""}
Exception in thread "main" com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was STRING at line 1 column 5
    at com.google.gson.Gson.fromJson(Gson.java:806)
    at com.google.gson.Gson.fromJson(Gson.java:761)
    at com.google.gson.Gson.fromJson(Gson.java:710)
    at ViaCEP_WebService.HttpExemplo2.main(HttpExemplo2.java:61)
Caused by: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was STRING at line 1 column 5
    at com.google.gson.stream.JsonReader.expect(JsonReader.java:339)
    at com.google.gson.stream.JsonReader.beginArray(JsonReader.java:306)
    at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:79)
    at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:60)
    at com.google.gson.Gson.fromJson(Gson.java:795)
    ... 3 more

我想获取 cep、logadouro、complemento 等对象。

有什么帮助吗?

最佳 安德森

最佳答案

您要求 Gson 构建 ConsultaWSCep 列表,但您的 JSON 仅包含单个对象。

替换这个:

Type ceptype = new TypeToken<List<ConsultaWSCep>>() {}.getType();
List<ConsultaWSCep> list = g.fromJson(WSChamada, ceptype);

与:

ConsultaWSCep consultaWSCep = g.fromJson(WSChamada, ConsultaWSCep.class);

将为您提供类的单个实例(大概您的 JSON 确实与您的类匹配,但由于您没有在问题中包含该类,所以很难说。

或者,更改服务器代码,使其返回数组而不是单个对象。您可以通过硬编码 json 来测试这一点:

String json = "[{  \"cep\": \"69050-110\",  \"logradouro\": \"Conjunto Tocantins\",  \"complemento\": \"\",  \"bairro\": \"Chapada\",  \"localidade\": \"Manaus\",  \"uf\": \"AM\",  \"unidade\": \"\",  \"ibge\": \"1302603\",  \"gia\": \"\"}]";

更完整的示例:

String json = http.sendGet(WSChamada);
System.out.println(json); // imprimme padrão 
// criando array de json para gson para impresão
Gson g = new Gson();
ConsultaWSCep c = g.fromJson(WSChamada, ConsultaWSCep.class);
System.out.println(c.getCep());

或者:

ConsultaWSCep c = (new Gson()).fromJson(http.sendGet(WSChamada), ConsultaWSCep.class);
System.out.println(c.getCep());

关于java - 应为 BEGIN_ARRAY,但在第 1 行第 5 列为 STRING,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39441876/

相关文章:

html - 如何使用CSS样式化递归目录?

java - 增强 netbean、DataNucleus 中的类

ruby - Ruby 中作为字符串的平均时间数组

java - 创建颜色数组然后将其用于 Jbuttons?

ruby-on-rails - 如何在 Rails 中使用外部 API?

jQuery 不会读取 JSON 响应(使用 $.post)

java - JavaSparkContext 构造函数是否会使用传递的所有配置?

java - 如何在java中将文本字段的值设置到表列中

java - 主线程异常

python - 在 python 2.7 中添加字节