我需要解析存储在单个文件中的 json 列表!
到目前为止我所做的是,test.json 文件包含:
{"location":"lille","lat":28.4,"long":51.7,"country":"FR"}
有了这个文件,我有下面的代码
public class JsonReader {
public static void main(String[] args) throws ParseException {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(new FileReader("c:\\test.json"));
JSONObject locationjson= (JSONObject) obj;
String location= (String) locationjson.get("location");
System.out.printf("%s",location);
long lat = (Long) locationjson.get("lat");
System.out.printf("\t%d",lat);
//similarly for other objects
这是一个工作代码,我只能在文件 test.json 中打印一个 json
现在,如果我必须在文件中打印 json 列表:test1.json,如下所示:每一行都是一个有效的 json,并且单个文件中有 json 列表。我需要的是解析每个 json 并在每一行中打印它。使用 bean 类会起作用吗?
{"Atlas":{"location":"lille","lat":28.4,"long":51.7,"country":"FR"}}
{"Atlas":{"location":"luxum","lat":24.1,"long":54.7,"country":"LU"}}
{"Atlas":{"location":"ghent","lat":28.1,"long":50.1,"country":"BE"}}
{"Atlas":{"location":"alborg","lat":23.4,"long":53.7,"country":"DN"}}
感谢您的帮助!