• 集合去重方法,自备


     /**
         * 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;
        }
  • 相关阅读:
    网站精准查询IP
    JQuery插件模板
    SQLSERVER 数据从一张那个表复制到另一张表
    C# 取form表单的数据
    C# 判断网络文件是否存在
    C# 将文件转换为 Stream
    C# 将 Stream 写入文件
    JDBC教程
    Spring Boot教程
    JavaMail
  • 原文地址:https://www.cnblogs.com/xqxacm/p/11711925.html
Copyright © 2020-2023  润新知