0

嗨,我正在尝试从 ReST API 读取 JSON,但由于 mycode 不正确,我得到了一个空指针异常。

我有一个我正在读取的 JSON,看起来像这样:

processJSON({
"LocationList":{
  "noNamespaceSchemaLocation":"http://api.vasttrafik.se/v1/hafasRestLocation.xsd",
  "servertime":"16:13",
  "serverdate":"2013-03-22",
  "StopLocation":[{
    "name":"Brunnsparken, Göteborg",
    "lon":"11.967824",
    "lat":"57.706944",
    "id":"9021014001760000",
    "idx":"1"
    },{
    "name":"Brunnsgatan, Göteborg",
    "lon":"11.959455",
    "lat":"57.693766",
    "id":"9021014001745000",
    "idx":"4"
    },{
    "name":"Brunnslyckan, Lerum",
    "lon":"12.410219",
    "lat":"57.812073",
    "id":"9021014017260000",
    "idx":"5"
    },

现在我想要 JSON 文档中的名称,具体取决于用户输入的内容。

我如何用代码做到这一点?

我的错误代码是这样的:

import org.json.simple.JSONObject;
import org.json.simple.JSONValue;

    public class JSONReader {

        private String jsonData = "";


        public String getJsonData(String location){


            try {

                    URL url = new     URL("http://api.vasttrafik.se/bin/rest.exe/v1/location.name?authKey=secret&format=json&jsonpCallback=processJSON&input=" + URLEncoder.encode(location, "UTF-8"));
                    URLConnection connection = url.openConnection();
                    BufferedReader readJsonFile = new BufferedReader(new InputStreamReader(connection.getInputStream(), "UTF-8"));
                    String temp = "";
                    while((temp = readJsonFile.readLine()) != null){
                            jsonData += temp;
                    }
                    readJsonFile.close();

                    System.out.println(jsonData);
                    return jsonData;

            }

            catch (IOException e) {

            }
            return null;
    }

       public void JSONParsing(){

                String location = Planner.getPlanner().getStartingLocation();
                JSONObject obj =(JSONObject)JSONValue.parse(getJsonData(location));

                //Set the text into the JList

                if (obj.containsValue(location));
                obj.get("name");
                }
    }

我想从 JSON 中获取与用户输入相同的位置名称。我如何用代码做到这一点?

4

1 回答 1

0

我认为您是在问如何解析您的JSONObject并从中获取用户感兴趣的相应值。下面是一个示例,说明如何拆分JSONObject以创建Map其键为Stringid 的示例(因为名称不似乎是唯一的),其价值是整体JSONObject。您可以使用此映射来查找用户的输入,如果您对此感兴趣,则可以找到合适的 LLA。

public Map<String, JSONObject> createLocationMap(JSONObject jsonObj){
    Map<String, JSONObject> nameToLocationMap = new HashMap<String, JSONObject>();
    JSONObject locationList = (JSONObject) jsonObj.get("LocationList");
    JSONArray array = (JSONArray) locationList.get("StopLocation");
    for (int i = 0; i < array.length(); i++) {
        String name = (String) ((JSONObject) array.get(i)).get("id");
        nameToLocationMap.put(name, ((JSONObject)array.get(i)));
    }
    return nameToLocationMap;
}

您可以根据需要调整此方法。例如,如果您对 theid和 the之间的关系感兴趣,name那么您可以创建一个类似的方法来使用这些值而不是id整个JSONObject'. 我希望这会有所帮助~

于 2013-03-22T16:41:10.667 回答