栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

Android List(集合)中的对象以某一个字段排序案例

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Android List(集合)中的对象以某一个字段排序案例

在Android开发中,有时我们需要对一个对象的集合按照某一个字段进行排序,

Bean

public class Student {
 private int studentId;
 private String studentName;
 private int age;
 public Student(int studentId , String studentName, int age){
  this.studentId=studentId;
  this.studentName=studentName;
  this.age=age;
 }
 public int getStudentId() {
  return studentId;
 }
 public void setStudentId(int studentId) {
  this.studentId = studentId;
 }
 public String getStudentName() {
  return studentName;
 }
 public void setStudentName(String studentName) {
  this.studentName = studentName;
 }
 public int getAge() {
  return age;
 }
 public void setAge(int age) {
  this.age = age;
 }

}

实现排序

实现排序比较类 Comparator ,里面实现排序规则。

public class test {

 
 public static void main(String[] args) {
   Student stu1 = new Student (1,"zhangsan",28);
   Student stu2 = new Student (2,"zhagnsan",19);
   Student stu3 = new Student (3,"wangwu",19);
   Student stu4 = new Student (4,"wangwu",19);
   Student stu5 = new Student (5,"zhaoliu",18);

   ArrayList list = new ArrayList();
   list.add(stu1);
   list.add(stu2);
   list.add(stu3);
   list.add(stu4);
   list.add(stu5); 
//排序规则,这里是以年龄先排序,如果年龄相同
  Comparator comparator = new Comparator() {
   public int compare(Student s1, Student s2) {
    // 先排年龄
    if (s1.getAge() != s2.getAge()) {
     return s1.getAge() - s2.getAge();
    } else if (!s1.getStudentName().equals(s2.getStudentName())) {
     // 年龄相同则按姓名排序
     return s1.getStudentName().compareTo(s2.getStudentName());
    } else {
     // 姓名也相同则按学号排序
     return s1.getStudentId() - s2.getStudentId();
    }
   }
  };

   //这里就会自动根据规则进行排序
   Collections.sort(list,comparator);
   for(int i=0;i

排序结果

结果:

年龄:18 姓名:zhaoliu 学号:5

年龄:19 姓名:wangwu 学号:3

年龄:19 姓名:wangwu 学号:4

年龄:19 姓名:zhagnsan 学号:2

年龄:28 姓名:zhangsan 学号:1

也可以想下面这样写:

 Collections.sort(list, new Comparator() {
   @Override
   public int compare(GoodsBean bean1, GoodsBean bean2) {

    if (Integer.valueOf(bean1.getScore()).compareTo(Integer.valueOf(bean2.getScore())) == 0) {
     return Integer.valueOf(bean1.getRecommend_num()).compareTo(Integer.valueOf(bean2.getRecommend_num()));
    } else {
     return Integer.valueOf(bean1.getScore()).compareTo(Integer.valueOf(bean2.getScore()));
    }
   }
  });

这样就可以对一个集合中的数据各种排序了。

补充知识:java利用映射表名称反射创建实体类并赋属性值

1.hibernate中首先进行初始化,将对应的表名和类名以键值对的方式存放到map中

  private Map mappings;//全局变量

  
  public void initMappings() {
    if (mappings == null) {
    mappings = new HashMap();
    SessionFactory factory = this.getSessionFactory();
    Map metaMap = factory.getAllClassmetadata();
    for (String key : (Set) metaMap.keySet()) {
      AbstractEntityPersister classmetadata = (AbstractEntityPersister) metaMap.get(key);
      String tableName = classmetadata.getTableName().toLowerCase();
      int index = tableName.indexOf(".");
      if (index >= 0) {
        tableName = tableName.substring(index + 1);
      }
      String className = classmetadata.getEntitymetamodel().getName();
      mappings.put(tableName, className);
      }
    }
  }

2.调用方法,传入表名得到对应的实体类名

  public String getEntityNameByTableName(String tableName) {
    initMappings();
    return mappings.get(tableName);
  }

3.根据实体类名创建实体类

  

  public Object getByReflect(String tableName, List listobj)throws Exception {

     Class model = Class.forName(tableName);
     Object object = new Object();

      if (model != null) {
        Field[] field = model.getDeclaredFields();
       String[] modelName = new String[field.length];
        String[] modelType = new String[field.length];

       object = model.newInstance();
       Method m = null;

        for (int i = 1; i 

以上这篇Android List(集合)中的对象以某一个字段排序案例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/153892.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号