项目中输出报表时,需要对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;
}
}
当然,表头也可以用数据的排序方法进行顺序调整,效率应该更高,只是用上面的方法更加直观。
上面表头顺序和数组都可以写在配置文件里面,方便调整。