为了账号安全,请及时绑定邮箱和手机立即绑定

使用 Java 访问嵌套 JSON 对象的最佳方法

使用 Java 访问嵌套 JSON 对象的最佳方法

一只名叫tom的猫 2023-08-09 17:01:31
我是使用 JSON 的新手,我想知道是否有更好的方法来完成我在下面的代码中所做的事情。您会注意到,要访问嵌套的 JSON 对象,我必须先创建子 JSON 对象/数组,然后才能访问 JSON 数组元素&ldquo;leagues&rdquo;。有没有更快或更简单的方法来做到这一点?public static void main( String[] args ) throws UnirestException{    JsonNode response = Unirest.get("http://www.api-football.com/demo/api/v2/leagues")            .header("x-rapidapi-host", "api-football-v1.p.rapidapi.com")            .header("x-rapidapi-key", "")            .asJson()            .getBody();    JSONObject json = new JSONObject( response );    JSONArray jArray = json.getJSONArray( "array" );    JSONObject jAPI = jArray.getJSONObject(0);    JSONObject jLeagues = jAPI.getJSONObject( "api" );    JSONArray jArrayLeagues = jLeagues.getJSONArray( "leagues" );    for(int n = 0; n < jArrayLeagues.length(); n++) {        JSONObject leagues = jArrayLeagues.getJSONObject(n);        System.out.print(leagues.getString("name") + " " );        System.out.print(leagues.getString("country") + " ");        System.out.println( leagues.getInt("league_id") + " " );    }}
查看完整描述

1 回答

?
慕虎7371278

TA贡献1802条经验 获得超4个赞

您可以使用Gson或JacksonJSON将有效负载反序列化为类。此外,这两个库还可以反序列化to - to和to 、或任何其他集合。使用jsonschema2pojo ,您可以为已经带有注释的给定负载生成类。POJOJSONJava CollectionJSON ObjectsMapJSON ArrayListSetarray (T[])POJOJSONGsonJackson

当您不需要处理整个JSON有效负载时,您可以使用JsonPath库对其进行预处理。例如,如果您只想返回联赛名称,则可以使用$..leagues[*].name路径。您可以使用在线工具进行尝试并提供您的JSON路径。

您的问题可以使用Jackson以下方法轻松解决:

import com.fasterxml.jackson.annotation.JsonProperty;

import com.fasterxml.jackson.core.JsonPointer;

import com.fasterxml.jackson.core.type.TypeReference;

import com.fasterxml.jackson.databind.DeserializationFeature;

import com.fasterxml.jackson.databind.JsonNode;

import com.fasterxml.jackson.databind.ObjectMapper;


import java.net.URL;

import java.util.List;


public class JsonApp {


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

        // workaround for SSL not related with a question

        SSLUtilities.trustAllHostnames();

        SSLUtilities.trustAllHttpsCertificates();


        String url = "https://www.api-football.com/demo/api/v2/leagues";


        ObjectMapper mapper = new ObjectMapper()

                // ignore JSON properties which are not mapped to POJO

                .disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);


        // we do not want to build model for whole JSON payload

        JsonNode node = mapper.readTree(new URL(url));


        // go to leagues JSON Array

        JsonNode leaguesNode = node.at(JsonPointer.compile("/api/leagues"));


        // deserialise "leagues" JSON Array to List of POJO

        List<League> leagues = mapper.convertValue(leaguesNode, new TypeReference<List<League>>(){});

        leagues.forEach(System.out::println);

    }

}


class League {

    @JsonProperty("league_id")

    private int id;

    private String name;

    private String country;


    public int getId() {

        return id;

    }


    public void setId(int id) {

        this.id = id;

    }


    public String getName() {

        return name;

    }


    public void setName(String name) {

        this.name = name;

    }


    public String getCountry() {

        return country;

    }


    public void setCountry(String country) {

        this.country = country;

    }


    @Override

    public String toString() {

        return "League{" +

                "id=" + id +

                ", name='" + name + '\'' +

                ", country='" + country + '\'' +

                '}';

    }

}

上面的代码打印:


League{id=2, name='Premier League', country='England'}

League{id=6, name='Serie A', country='Brazil'}

League{id=10, name='Eredivisie', country='Netherlands'}

League{id=132, name='Champions League', country='World'}


查看完整回答
反对 回复 2023-08-09
  • 1 回答
  • 0 关注
  • 103 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信