美文网首页Java学习笔记
修改原生的org.json包

修改原生的org.json包

作者: Pencilso | 来源:发表于2016-12-17 14:42 被阅读98次

    原生的Json在封装的时候,如果value为空的话,则不会添加这条键值对,想实现如果value为空的话也记录下来。像这种(key:null)。
    于是找到Json源码中的put方法,看到在put的时候有一个判断,如果value是空的话,则remove了key。把这条代码注释一下就好了。

    贴上原JSON代码

     /**
     * Put a key/value pair in the JSONObject. If the value is null, then the
     * key will be removed from the JSONObject if it is present.
     *
     * @param key
     *            A key string.
     * @param value
     *            An object which is the value. It should be of one of these
     *            types: Boolean, Double, Integer, JSONArray, JSONObject, Long,
     *            String, or the JSONObject.NULL object.
     * @return this.
     * @throws JSONException
     *             If the value is non-finite number or if the key is null.
     */
    public JSONObject put(String key, Object value) throws JSONException {
        if (key == null) {
            throw new NullPointerException("Null key.");
        }
        if (value != null) {
            testValidity(value);
            this.map.put(key, value);
        } else {
            this.remove(key);
        }
        return this;
    }
    

    在使用Json封装的时候,比如我先put的是一条key为"b"的记录,然后再put一条key为"a"的记录,最后打印的字符串是"a"的记录在前,"b"的记录在后。想实现按记录顺序来排列,于是查看Json代码。

    发现在Json实例的时候创建的是HashMap对象

    /**
     * Construct an empty JSONObject.
     */
    public JSONObject() {
        this.map = new HashMap<String, Object>();
    }
    

    然而HashMap会默认将key以hash码来进行排序的。
    于是又默默的改了句代码。。。
    将HashMap改成了LinkedHashMap

     /**
     * Construct an empty JSONObject
     */
    public JSONObject() {
        this.map = new LinkedHashMap<String,Object>();
    }
    

    <a href="http://ocrn2n3pi.bkt.clouddn.com/a349046c836b4d8fbb785ac226f64333.rar">加个修改后的源码与成品链接</a>

    相关文章

      网友评论

        本文标题:修改原生的org.json包

        本文链接:https://www.haomeiwen.com/subject/pmwomttx.html