集合去重方法,自備

 /**
     * xqx 去除未知object集合的重複數據
     * @param oldList  老數據集合
     * @param newList  新數據集合
     * @param key       惟一標識
     * @param <T>
     * @return
     */
    public static <T>ArrayList removeRepeatElement(List<T> oldList , List<T> newList , String key){
        ArrayList<T> resultList = new ArrayList<>();
        ArrayList<String> keys = new ArrayList<>();// 老數據中存在的惟一標識
        // 獲取到原來數據中的全部位置標識
        for (int i = 0; i < oldList.size(); i++) {
            try {
                JSONObject oldDataJson = new JSONObject(new Gson().toJson(oldList.get(i), Object.class));
                String currentKey = String.valueOf(oldDataJson.get(key));
                if (!keys.contains(currentKey)){
                    keys.add(currentKey);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
        // 遍歷新的數據,若是有相同的惟一標識,則remove
        for (int i = newList.size()-1; i >=0 ; i--) {
            try {
                JSONObject newDataJson = new JSONObject(new Gson().toJson(newList.get(i), Object.class));
                String currentKey = String.valueOf(newDataJson.get(key));
                if (keys.contains(currentKey)){
                    // 重複key
                    newList.remove(i);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
        // 避免返回null
        if (newList!=null){
            resultList.addAll(newList);
        }
        return resultList;
    }
相關文章
相關標籤/搜索