合并两个JSONObject

    /**
     * 合并两个JSONObject
     *
     * @param Obj1
     * @param Obj2
     * @return
     * @throws JSONException
     */
    /*
     * @SuppressWarnings("unchecked") private JSONObject combineJson(JSONObject
     * Obj1, JSONObject Obj2) throws JSONException {
     *
     * Iterator Keys2 = Obj2.keys(); String key, value;
     * while(Keys2.hasNext()){ key = Keys2.next(); value = Obj2.optString(key);
     *
     * Obj1.put(key, value); } return Obj1; }
     */

你可能感兴趣的:(JAVA,EE)