jsonObject.has()是干嘛的?
高洛峰
高洛峰 2016-11-10 15:18:36
0
2
1135

jsonObject.has()是干嘛的?

  String jsonStr=new String(data);
        try {
            JSONObject jsonObject=new JSONObject(jsonStr);

            if (jsonObject.has("fileUri")){
            }


        } catch (JSONException e) {
            e.printStackTrace();
        }


高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(2)
三叔

查询对象是否包含该key,返回boolean,与Map.containsKey(key)用法一致

学霸
Determine if the JSONObject contains a specific key.
Parameters:
key A key string.
Returns:
true if the key exists in the JSONObject.

    public boolean has(String key) {
         return this.map.containsKey(key);
    }
    
    public JSONObject() {
        this.map = new HashMap();
    }

可以看出是通过使用Map.containsKey(key)方法来做出判断的。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!