简体   繁体   English

使用改造进行JSON解析

[英]JSON parsing using retrofit

I have a sample JSON file that I want to parse in Java using retrofit. 我有一个样本JSON文件,我想使用改型在Java中进行解析。 I am new to retrofit and a bit new to Java as well. 我是新手,对Java也有点新手。 The examples I see on the web are not clear to me right now. 我现在在网络上看到的示例尚不清楚。 Can somebody explain how I can use retrofit to extract the movie_logo field from the following JSON structure? 有人可以解释我如何使用改型从以下JSON结构中提取movie_logo字段吗?

  "url":"sample_url",
  "movies_metadata":
  {
    "movies":
    {
       "Movie 1":
        {
          "Description":"Sample description for Movie 1",
           "Movie_Logo":"logo1.png"
        },
        "Movie 2":
        {
           "Description":"Sample description for Movie 2",
           "Movie_Logo":"logo1.png"
        },
       "Movie 3":
        {
           "Description":"Sample description for Movie 3",
           "Movie_Logo":"logo1.png"
        }
      }
   }

Retrofit isn't really used for parsing JSON into Java objects (internally it actually uses GSON for the parsing of API responses). Retrofit并没有真正用于将JSON解析为Java对象(内部它实际上使用GSON来解析API响应)。 I would suggest using JSON.org , GSON or Jackson for parsing your JSON file. 我建议使用JSON.orgGSONJackson来解析您的JSON文件。 The simplest way to do this is to use the JSON.org parser: 最简单的方法是使用JSON.org解析器:

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.io.IOUtils;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.HttpClientBuilder;
import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.Test;

@Slf4j
public class JsonTest {
    @Test
    public void test() throws Exception {
        HttpClient client = HttpClientBuilder.create().build();
        HttpGet request = new HttpGet("http://jsonblob.com/api/jsonBlob/5384f843e4b0441b35d1329d");
        request.addHeader("accept", "application/json");
        HttpResponse response = client.execute(request);
        String json = IOUtils.toString(response.getEntity().getContent());

        //here's where you're actually parsing the JSON
        JSONObject object = new JSONObject(json);
        JSONObject metadata = object.getJSONObject("movies_metadata");
        JSONObject movies = metadata.getJSONObject("movies");
        JSONArray movieNames = movies.names();
        for (int i = 1; i< movieNames.length(); i++) {
            String movieKey = movieNames.getString(i);
            log.info("The current object's key is {}", movieKey);
            JSONObject movie = movies.getJSONObject(movieKey);
            log.info("The Description is {}", movie.getString("Description"));
            log.info("The Movie_Logo is {}", movie.getString("Movie_Logo"));
        }
    }
}

I put your JSON into a JSON Blob and then used their API to request it in the unit test. 我将您的JSON放入JSON Blob ,然后使用其API在单元测试中请求它。 The output from the unit test is: 单元测试的输出为:

14:49:30.450 [main] INFO  JsonTest - The current object's key is Movie 2
14:49:30.452 [main] INFO  JsonTest - The Description is Sample description for Movie 2
14:49:30.452 [main] INFO  JsonTest - The Movie_Logo is logo1.png
14:49:30.452 [main] INFO  JsonTest - The current object's key is Movie 1
14:49:30.453 [main] INFO  JsonTest - The Description is Sample description for Movie 1
14:49:30.453 [main] INFO  JsonTest - The Movie_Logo is logo1.png

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM