从 JSONArray 输出中删除引号
2022-09-04 05:38:45
在成功的调用中,我得到了带有键“对象”的JSONArray,以及带有键“name”的testValue。输出如下:
"Abcd"
"Wxyz"
我的代码如下:
public void onSuccess(JSONValue val) {
JSONObject obj = val.isObject();
JSONArray test = JSONUtil.getJSONArray(test, "objects");
for (int i = 0; i < test.size(); i++) {
JSONObject childJSONObject = (JSONObject) test.get(i);
JSONValue testValue = childJSONObject.get("name");
System.out.println(testValue);
}
}
希望按如下方式打印名称:(不带双引号)
Abcd
Wxyz