用Java读取json文件

时间:2016-06-14 15:51:42

标签: java json parsing

所以我在阅读Java中的Json文件时遇到了麻烦。

这是一个Json文件,其内容采用以下格式:

{
  "_id": 2864071,
  "name": "Neustadt",
  "country": "DE",
  "coord": {
    "lon": 12.56667,
    "lat": 52.400002
  }
}

这是我正在使用的代码:

package controllers;


@Named(value = "cityID")
@SessionScoped
public class getCityIDs implements Serializable {



    public long getCityIDs(String name) {

        //Read the json file

        try {

            FileReader reader = new FileReader(filePath);

            JSONParser parser = new JSONParser();
            JSONObject jsonObject = (JSONObject) parser.parse(reader);

            // get a number from the JSON object

            String travelName = (String) jsonObject.get("name");

            if(travelName.equals(name)){
                long id =  (long) jsonObject.get("_id");
                System.out.println(id);
                return id;
            } else {
                System.out.println("else");
                return 0;
            }

        } catch (FileNotFoundException ex) {
            Logger.getLogger(getCityIDs.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IOException | ParseException ex) {
            Logger.getLogger(getCityIDs.class.getName()).log(Level.SEVERE, null, ex);
        }
        System.out.println("einde functie");
        return 0;
        // JSONObject jsonObject = (JSONObject) parser.parse(getClass().getResource("/json/city.list.json").toString());
    }

    public String test(){
        return "hello world";
    }
}

然而,它在这一行给我一个错误:

 JSONObject jsonObject = (JSONObject) parser.parse(reader);

感:

Severe: Unexpected token LEFT BRACE({) at position 88.
    at org.json.simple.parser.JSONParser.parse(Unknown Source)
    at org.json.simple.parser.JSONParser.parse(Unknown Source)
    at controllers.getCityIDs.getCityIDs(getCityIDs.java:45)

由于某种原因,它无法读取文件路径? "未知来源"? 我不确定我做错了什么。

该方法只返回" 0"当我在另一个班级中调用该方法时,使用国名和#34; Neustadt"。 基本上我想要的是这个函数返回某个城市的ID。 名称与ID一起存储在Json中。

修改 理想情况下,我希望能够解析位于项目内部的JSON文件。 我尝试使用.getClass()。getResource(" / path / to / json");但那根本不起作用。

编辑:修复

package controllers;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Serializable;
import java.net.URL;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.enterprise.context.RequestScoped;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

@Named(value = "cityID")
@SessionScoped
public class getCityIDs implements Serializable{



    JSONObject jsonObject;
    public long getCityIDs(String name) {

        try { 

            JSONParser parser = new JSONParser();

            InputStream in = getClass().getResourceAsStream("/dataSteden/stedenNamen1.json");

            try (BufferedReader br = new BufferedReader(new InputStreamReader(in))) {
            String line;
             while ((line = br.readLine()) != null) {
                jsonObject  = (JSONObject) parser.parse(line);
               }
            }

            String travelName = (String) jsonObject.get("name");
            System.out.println("stad: " +travelName);
            System.out.println("testttt");
            if(travelName.equals(name)){
                long id =  (long) jsonObject.get("_id");
                System.out.println(id);
                return id;
            } else {
                System.out.println("else");
                return 5;
            }

        } catch (FileNotFoundException ex) {
            Logger.getLogger(getCityIDs.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IOException | ParseException ex) {
            Logger.getLogger(getCityIDs.class.getName()).log(Level.SEVERE, null, ex);
        }
        System.out.println("einde functie");
        return 0;
        // JSONObject jsonObject = (JSONObject) parser.parse(getClass().getResource("/json/city.list.json").toString());
    }

    public String test(){
        return "hello world";
    }
}

1 个答案:

答案 0 :(得分:5)

您的数据是以行分隔的

{"_id":707860,"name":"Hurzuf","country":"UA","coord":{"lon":34.283333,"lat":44.549999}}
{"_id":519188,"name":"Novinki","country":"RU","coord":{"lon":37.666668,"lat":55.683334}}
{"_id":1283378,"name":"Gorkhā","country":"NP","coord":{"lon":84.633331,"lat":28}}

因此,您无法将整个文件放入JSONParser,您必须逐行读取文件并将每行解析为JSONObject,您可以从中提取所需的密钥 - 值。