zoukankan      html  css  js  c++  java
  • java List的排序

    项目中输出报表时,需要对List<String>进行排序。由于报表数据是分段获取的,不能在获取时排序,只能在输出时排序。

    有两种情况,一种是表头排序,另一种数据。

    表头,可以使用如下方法,先定义原始数据表头,在输出时位于第几列:

        private static final Map<String,Integer> PERSONAL_SORT = new HashMap<>();
        static {
            PERSONAL_SORT.put("表头1", 16);//原始数据第一列,输出时显示在第16列
            PERSONAL_SORT.put("表头2", 10);
            PERSONAL_SORT.put("表头3", 5);
            PERSONAL_SORT.put("表头4", 9);
            PERSONAL_SORT.put("表头5", 8);
            PERSONAL_SORT.put("表头6", 2);
            PERSONAL_SORT.put("表头7", 6);
            PERSONAL_SORT.put("表头8", 3);
            PERSONAL_SORT.put("表头9", 14);
            PERSONAL_SORT.put("表头10", 7);
            PERSONAL_SORT.put("表头11", 15);
            PERSONAL_SORT.put("表头12", 11);
            PERSONAL_SORT.put("表头13", 12);
            PERSONAL_SORT.put("表头14", 13);
            PERSONAL_SORT.put("表头15", 4);
            PERSONAL_SORT.put("表头16", 1);
        }
    再进行排序(selColumnsList是需要排序的对象):
    Collections.sort(selColumnsList, new Comparator<String>() {
        @Override
        public int compare(String s, String t1) {
            if(PERSONAL_SORT.get(s) >PERSONAL_SORT.get(t1)) {
                return 1;
            }else
            {
                return -1;
            }
        }
    });

    数据部分,原始数据是一行行的生成的,因此可以在原始数据的每一行生成后,进行顺序调换。

    先定义一个数组,用来描述每一行,从原始数据的哪个列取值:

    //第5列从原始数据的第20列取值,第6列从原始数据第10列取值
    private static int[] COLUMNS_SORT2 = {1,2,3,4,20,10,12,19,7,11,14,9,8,6,16,17,18,13,15,5};

    再进行顺序调换:

    private static List<String> SortList(List<String> list, int[] order) {
            if(list.size() != order.length)
                //如果指定顺序的数组和原始数据长度不一致,直接返回原始数据
                return list;
            else
            {
                List<String> newList = new ArrayList<>();
                for(int i=0;i<order.length;i++)
                {
                    newList.add(list.get(order[i]-1));
                }
                return newList;
            }
        }

    当然,表头也可以用数据的排序方法进行顺序调整,效率应该更高,只是用上面的方法更加直观。

    上面表头顺序和数组都可以写在配置文件里面,方便调整。

  • 相关阅读:
    TensorboardX的使用【有手就⭐系列】
    Python学习记录
    es 之 自定义 mapping(五)
    es 索引和文档 API (四)
    布尔查询(三)
    term 和 match 查询(二)
    使用 Python 批量将数据插入到 ES中
    【flask + vue 前后端分离博客】设计 User 用户(三)
    【flask + vue 前后端分离博客】使用 axios 访问接口(二)
    【flask + vue 前后端分离博客】创建第一个 Flask RESTFul(一)
  • 原文地址:https://www.cnblogs.com/yesok/p/12892772.html
Copyright © 2011-2022 走看看