简体   繁体   中英

Parsing JSON data in Java

I want to parse the some data from this page: http://www.bbc.co.uk/radio1/programmes/schedules/england/2013/03/1.json

The data I want to parse is the titles however I am unsure how I can extract the data. This is what I have done so far:

 import java.io.BufferedReader;
 import java.io.InputStream;
 import java.io.InputStreamReader;
 import java.net.HttpURLConnection;
 import java.net.URL;
 import org.json.simple.JSONObject;
 import org.json.simple.parser.JSONParser;

 public class Test
 {
    public Test() { }

    public static void main(String[] args)
    {
            URL url;
            HttpURLConnection connection = null;
            InputStream is = null;
            JSONParser parser = new JSONParser();

            try
            {
                    url = new URL("http://www.bbc.co.uk/radio1/programmes/schedules/england/2013/03/1.json");
                    connection = (HttpURLConnection) url.openConnection();
                    connection.setRequestMethod("GET");
                    connection.connect();
                    is = connection.getInputStream();
                    BufferedReader theReader = new BufferedReader(new InputStreamReader(is, "UTF-8"));
                    String reply;
                    while ((reply = theReader.readLine()) != null)
                    {
                            System.out.println(reply);
                            Object obj = parser.parse(reply);
                            JSONObject jsonObject = (JSONObject) obj;
                            String title = (String) jsonObject.get("time");
                            System.out.println(title);
                    }
            }
            catch (Exception e) {
                    e.printStackTrace();
            }
    }

}

This just returns null. Can anybody tell me what I need to change? Thanks.

If you read the javadoc of JSONObject#get(String) which is actually HashMap.get(String) , it states

Returns: the value to which the specified key is mapped, or null if this map contains no mapping for the key

Your JSON does not contain a mapping for the key time .

Edit:

If you meant title instead of time , take this extract of the JSON

{"schedule":{"service":{"type":"radio","key":"radio1","title":"BBC Radio 1",...

You need to first get schedule as a JSONObject , then service as a JSONObject , and then title as a normal String value. Apply this differently depending on the type of JSON value.

使用JSONGen之类的东西可以更好地了解您的数据结构,甚至可以使用google-gson库将数据映射到生成的对象

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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