我有一个看起来像这样的JSON
{
"users": [
{
"displayName": "Dennis Law",
"givenName": "Dennis",
"surname": "Law",
"extension_user_type": "user",
"identities": [
{
"signInType": "emailAddress",
"issuerAssignedId": "dennislaw@gmail.com"
}
],
"extension_timezone": "VET",
"extension_locale": "en-IN",
"extension_tenant": "Team1"
},
{
"displayName": "Shaggy Nate",
"givenName": "Shaggy",
"surname": "Nate",
"extension_user_type": "user",
"identities": [
{
"signInType": "userName",
"issuerAssignedId": "Shaggynatealpha"
}
],
"extension_timezone": "NST",
"extension_locale": "en-AF",
"extension_tenant": "Team1"
}
]
}
我编写了一个Java代码来迭代JSON并将值保存在变量中,如下所示,下面是我要迭代JSON的method()的内容,因此,如果看到的话,我有一个包装器用户。因此,我采用了上面提到的JSON,并将其作为JSON对象传递,并进行了迭代,以获取所有字段,例如DISPLAYNAME,SURNAME ....等。
JSONObject jsonUserObject = new JSONObject(json_string);
JSONArray jsonUserArray = jsonUserObject.getJSONArray("users");
for (int i = 0; i < jsonUserArray.length();i++) {
LOG.info("Iteration...");
displayName = jsonUserArray.getJSONObject(i).getString("displayName");
givenName = jsonUserArray.getJSONObject(i).getString("givenName");
surname = jsonUserArray.getJSONObject(i).getString("surname");
extension_user_type = jsonUserArray.getJSONObject(i).getString("extension_user_type");
JSONArray jsonIdentitiesArray = jsonUserArray.getJSONObject(i).getJSONArray("identities");
for (int j = 0; j < jsonIdentitiesArray.length();j++) {
signInType = jsonIdentitiesArray.getJSONObject(j).getString("signInType");
issuerAssignedId = jsonIdentitiesArray.getJSONObject(j).getString("issuerAssignedId");
}
try {
extension_timezone = jsonUserArray.getJSONObject(i).getString("extension_timezone");
extension_locale = jsonUserArray.getJSONObject(i).getString("extension_locale");
extension_tenant = jsonUserArray.getJSONObject(i).getString("extension_tenant");
} catch (JSONException jse) {
LOG.warn("JSONException occured, some attribute was not found!", jse.getMessage());
}
但是,如果您看到我有4个以'
开头的字段,我将尝试动态地执行此操作。扩展名->它们是 extension_user_type , extension_local , extension_timezone , extension_tenant ,
我不想硬编码那些代码,我想知道一种方法,不需要在下面一行,而是读取以 extension _ 开头的所有字段,然后将其存储在变量中,动态
因为extension_字段可以是这4个字段,也可以是任何字段,但是我已经对其进行了硬编码,但是我正在寻找一种不对其进行硬编码并动态选择并存储在名为extension_“ blabalbla”的变量中的方法
谢谢。
extension_blablabla = jsonUserArray.getJSONObject(i).getString("extension_blablabla");
/////////更新
private static void getData(String userJsonAsStringParam) {
JSONObject jsonUserObject = new JSONObject(userJsonAsStringParam);
JSONArray jsonUserArray = jsonUserObject.getJSONArray("users");
for (int i = 0; i < jsonUserArray.length();i++) {
Map<String,String> map = new HashMap<String,String>();
@SuppressWarnings("unchecked")
Iterator<String> keys = jsonUserArray.getJSONObject(i).keys();
while(keys.hasNext()){
String key = (String)keys.next();
String value = jsonUserArray.getJSONObject(i).getString(key);
map.put(key,value);
}
}
}
错误:
Exception in thread "main" org.json.JSONException: JSONObject["identities"] not a string.
答案 0 :(得分:2)
我认为不可能将它们动态存储在具有相同名称的变量中,例如extension_timezone。这要求动态更改变量名,而且您甚至都不知道存在哪些变量,哪些不存在。 绝对可能的是将它们存储在类似于地图的结构中:
Map<String,String> map = new HashMap<String,String>();
Iterator<String> keys = jsonUserArray.getJSONObject(i).keys();
while(keys.hasNext()){
String nextString = (String)keys.next();
if(nextString.equals("identities"))
{
continue;
}
String key = nextString;
String value = jsonUserArray.getJSONObject(i).getString(key);
map.put(key,value);
}
变量名现在用作映射中的键。如果您不知道地图,则这里是基本信息:https://docs.oracle.com/javase/8/docs/api/java/util/Map.html