gpt4 book ai didi

java - 使用 java 访问 JSON 属性名称

转载 作者:行者123 更新时间:2023-11-30 06:24:19 24 4
gpt4 key购买 nike

我正在研究一种解析 JSON 文件并收集其内容以供在其他地方使用的方法。我目前有一个工作示例如下:

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

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

public class testJSONParser {
public static void main(String[] args) throws Exception {
List<Map<String, String>> jsonArray = new ArrayList<Map<String, String>>();

BufferedReader br = new BufferedReader(new FileReader("json.txt"));

try {
String line = br.readLine();

while (line != null) {
JSONObject jsonObject = (JSONObject)new JSONParser().parse(line);

Map<String, String> currentLineMap = new HashMap<String, String>();

currentLineMap.put("country", jsonObject.get("country").toString());
currentLineMap.put("size", jsonObject.get("size").toString());
currentLineMap.put("capital", jsonObject.get("capital").toString());

jsonArray.add(currentLineMap);

line = br.readLine();
}
} catch (FileNotFoundException fnfe) {
fnfe.printStackTrace();
} catch (IOException ioe) {
ioe.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
br.close();
};
}
}
}

我正在使用 json simple 库来解析传入的 JSON 字符串。

这是来自已解析文件的示例字符串。

{"**country**":"Canada","**size**":"9,564,380","**capital**":"Ottawa"}

我的问题是如何获取这段代码,并让 put 方法能够动态分配给相应的 Map。这是我目前拥有的:

for (int i = 0; i < jsonObject.size(); i++) {
currentLineMap.put(jsonObject.???.toString(), jsonObject.get(i).toString());
}

那个???部分是我难住的地方。获取当前 JSON 行的值非常简单。但是如何获取属性值(在 JSON 字符串示例中以粗体突出显示)让我难以理解。是否有我不熟悉的可以调用此对象的方法?一种不同的更好的方法来遍历这个?还是我从一开始就完全倒退了?

最佳答案

在 JSON.org 引用实现中,您可以:

for (String key : JSONObject.getNames(jsonObject))
{
map.put(key, jsonObject.get(key));
}

在简单的 JSON 中,你会这样做:

for (Object keyObject : jsonObject.keySet())
{
String key = (String)keyObject;
map.put(key, (String)jsonObject.get(key));
}

这应该可以解决问题。

关于java - 使用 java 访问 JSON 属性名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17012955/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com