1

我想解析这个 JSON 字符串:

{
  lhs: "1 British pound",
  rhs: "1.6152 U.S. dollars",
  error: "",
  icc: true
}

但 JSONArray 返回空值。

4

1 回答 1

3

当前的 json 字符串包含一个jsonObject而不是将JsonArray其解析为:

// Convert String to Json Object
JSONObject jsonObject = new JSONObject("Pass_Your_Json_String");

// get lhs 
String str_lhs=jsonObject.getString("lhs");

// get rhs
String str_rhs=jsonObject.getString("rhs");

  //.....
于 2012-12-31T04:23:36.543 回答