簡體   English   中英

使用java從JSON數組中獲取特定值

[英]Get specific value from JSON array using java

我想使用 java 從下面的 JSON 示例中僅獲取 PersonNumber 值。

{"Context":[{"PersonNumber":"10","DMLOperation":"UPDATE","PeriodType":"E","PersonName":"Ponce","WorkerType":"EMP","PersonId":"1000","PrimaryPhoneNumber":"1","EffectiveStartDate":"2018-01-27","EffectiveDate":"2018-01-27"}],"Changed Attributes":[{"NamInformation1":{"new":"Ponce","old":"PONCE"}},{"FirstName":{"new":"Jorge","old":"JORGE"}},{"LastName":{"new":"Ponce","old":"PONCE"}}]}

下面是我的代碼:

for (SyndContentImpl content : (List<SyndContentImpl>) entry.getContents()) {
              
 JSONObject jsonObj = null;
  try {
      jsonObj = new JSONObject(content.getValue().toString());
      System.out.println(jsonObj.get("Context"));
    
      } catch (JSONException e) {
      e.printStackTrace();
  }  }

您必須訪問路徑Context[0].PersonNumber

這可以用

String personNumber = jsonObj.getJSONArray("Context").getJSONObject(0).getString("PersonNumber");

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM