使用改进进行JSON解析

时间:2014-05-27 20:24:36

标签: java json parsing retrofit

我有一个示例JSON文件,我想用Java进行解析。我是新手,也是Java的新手。我在网上看到的例子不是    现在对我说清楚。有人可以解释我如何使用改造从以下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"
        }
      }
   }

1 个答案:

答案 0 :(得分:2)

Retrofit并不真正用于将JSON解析为Java对象(在内部它实际上使用GSON来解析API响应)。我建议使用JSON.orgGSONJackson来解析您的JSON文件。最简单的方法是使用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"));
        }
    }
}

我将您的JSON放入JSON Blob,然后使用他们的API在单元测试中请求它。单元测试的输出是:

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