gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 12:15:36 24 4
gpt4 key购买 nike

我是 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com