List排序共通代码

Posted 霄九天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了List排序共通代码相关的知识,希望对你有一定的参考价值。

此共通方法可以根据特定字段进行排序

package com.gomecar.index.common.utils;

import java.lang.reflect.Method;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

/**
 * 对List中数据根据某个字段进行排序
 * Created by xiaotian on 2017/3/20.
 */
public class ListSortUtil<T> {
    /**
     * @param targetList 目标排序List
     * @param sortField 排序字段(实体类属性名)
     * @param sortMode 排序方式(asc or  desc)
     */
    @SuppressWarnings({ "unchecked", "rawtypes" })
    public   void sort(List<T> targetList, final String sortField, final String sortMode) {

        Collections.sort(targetList, new Comparator() {
            public int compare(Object obj1, Object obj2) {
                int retVal = 0;
                try {
                    //首字母转大写
                    String newStr=sortField.substring(0, 1).toUpperCase()+sortField.replaceFirst("\\w","");
                    String methodStr="get"+newStr;

                    Method method1 = ((T)obj1).getClass().getMethod(methodStr, null);
                    Method method2 = ((T)obj2).getClass().getMethod(methodStr, null);
                    if (sortMode != null && "desc".equals(sortMode)) {
                        retVal = method2.invoke(((T) obj2), null).toString().compareTo(method1.invoke(((T) obj1), null).toString()); // 倒序
                    } else {
                        retVal = method1.invoke(((T) obj1), null).toString().compareTo(method2.invoke(((T) obj2), null).toString()); // 正序
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                    //throw new RuntimeException();
                }
                return retVal;
            }
        });
    }
}

 

以上是关于List排序共通代码的主要内容,如果未能解决你的问题,请参考以下文章

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

vb对list排序问题求详细代码,要求数字从小到大排序不管后面的英文!

第九次作业

TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段

常见的代码片段