如何解析大型本地 JSON 文件以使用数组检索玩家名称等

How to parse large local JSON file to retrieve player names and more with an array

我有大量数据流,可以从使用 CharlesProxy 玩的游戏中捕获。我想解析数据并将其打印出来(最终构建一个 excel 电子表格)玩家姓名、x 和 y 位置以及公会名称。

Paste-Bin 中的 JSON 数据(您必须向下搜索一些条目才能看到实际上 return 也是玩家姓名的结果之一): http://pastebin.com/v4kAaspn

这是我在此处找到的一个示例,我尝试仅将其用于 return 玩家名称,但出现空指针异常错误。任何建议将不胜感激,非常感谢!

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.Iterator;

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

public class ToolMain {

    public static void main(String[] args) {

        JSONParser parser = new JSONParser();

        try {

            Object obj = parser.parse(new FileReader(
                    "//Users//Brandon//Desktop//JSONData.JSON"));

            JSONObject jsonObject = (JSONObject) obj;
            //get responses
            JSONArray rsp = (JSONArray)jsonObject.get("responses");
            //System.out.println(rsp);

            //get return value
            JSONObject rtvalue = (JSONObject)rsp.get(0);
            //System.out.println(rtvalue);

            //get hexes object
            JSONObject hexes = (JSONObject)rtvalue.get("return_value");
            //System.out.println(hexes);

            //get hexes array
            JSONArray hexesArray = (JSONArray)hexes.get("hexes");
            Iterator<JSONObject> iterator = hexesArray.iterator();
            while (iterator.hasNext()) {
                JSONObject factObj = iterator.next();
                String playerName = (String) factObj.get("player_name");
                if (playerName != null) {
                    System.out.println(playerName);
                }
            }
            //System.out.println(hexesArray);

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        }

    }

}

NullPointerException 发生在下一行,因为您的 JSONArray 消息为空:

Iterator<JSONObject> iterator = msg.iterator();

在创建迭代器之前应用检查 if(msg is not null)。

这样试试:

JSONObject jsonObject = (JSONObject) obj;
//get responses
JSONArray rsp = (JSONArray)jsonObject.get("responses");
System.out.println(rsp);

//get return value
JSONObject rtvalue = (JSONObject)rsp.get(0);
System.out.println(rtvalue);

//get hexes object
JSONObject hexes = (JSONObject)rtvalue.get("return_value");
System.out.println(hexes);

//get hexes array
JSONArray hexesArray = (JSONArray)hexes.get("hexes");
System.out.println(hexesArray);