JSONObject提供了获取String的一个方法,当查询失败的时候,会抛出异常。
public String getString(String key) { verifyIsNull(); Object o = get(key); if (o != null) { return o.toString(); } throw new JSONException("JSONObject[" + JSONUtils.quote(key) + "] not found."); }
但是作为api类,也会有先查询,查询不到,再设默认值的情况,相比较于查询失败,抛出异常,提供了更多的可选。
原文链接:https://www.f2er.com/javaschema/286124.htmlpublic String optString(String key,String defaultValue) { verifyIsNull(); Object o = opt(key); return o != null ? o.toString() : defaultValue; }