多字段 java对象排序
public class ReflexUtil {
static Logger logger = LoggerFactory.getLogger(ReflexUtil.class);
//getMethod
static public Object invokeMethod(String propertiesName, Object object) {
try {
if(object==null) return null;
if (!propertiesName.contains(".")) {
String methodName = "get"+getMethodName(propertiesName);
Method method = object.getClass().getMethod(methodName);
return method.invoke(object);
}
String methodName = "get"+getMethodName(propertiesName.substring(0,propertiesName.indexOf(".")));
Method method = object.getClass().getMethod(methodName);
return invokeMethod(propertiesName.substring(propertiesName.indexOf(".")+1), method.invoke(object));
} catch (Exception e) {
logger.error(e.toString(), e);
return null;
}
}
private static String getMethodName(String fildeName) {
byte[] items = fildeName.getBytes();
items[0] = (byte) ((char) items[0] - 'a' + 'A');
return new String(items);
}
public static void main(String args[]) {
Video video = new Video();
Album album = new Album();
album.setAlbumId(346l);
video.setAlbum(album);
video.setVideoId(126l);
System.out.println(ReflexUtil.invokeMethod("album.albumId", video));
}
}
public
class
CompareUtil {
//sort 1正序 -1 倒序 filed 多字段排序
public
static
<t> Comparator createComparator(
int
sort, String... filed) {
return
new
ImComparator(sort, filed);
}
public
static
class
ImComparator
implements
Comparator {
int
sort =
1
;
String[] filed;
public
ImComparator(
int
sort, String... filed) {
this
.sort = sort == -
1
? -
1
:
1
;
this
.filed = filed;
}
@Override
public
int
compare(Object o1, Object o2) {
int
result =
0
;
for
(String file : filed) {
Object value1 = ReflexUtil.invokeMethod(file, o1);
Object value2 = ReflexUtil.invokeMethod(file, o2);
if
(value1 ==
null
|| value2 ==
null
) {
continue
;
}
if
(!(value1
instanceof
Integer) || !(value1
instanceof
Integer)) {
continue
;
}
int
v1 = Integer.valueOf(value1.toString());
int
v2 = Integer.valueOf(value2.toString());
if
(v1 == v2)
continue
;
if
(sort ==
1
) {
return
v1 - v2;
}
else
if
(sort == -
1
) {
return
v2 - v1;
}
else
{
continue
;
}
}
return
result;
}
}
public
static
void
main(String args[]) {
LabelAlbum label1 =
new
LabelAlbum();
label1.setLabelId(
1
); label1.setSequnces(
1
);
LabelAlbum label2 =
new
LabelAlbum();
label2.setLabelId(
1
);label2.setSequnces(
2
);
LabelAlbum label3 =
new
LabelAlbum();
label3.setLabelId(
3
); label3.setSequnces(
4
);
LabelAlbum label4 =
new
LabelAlbum();
label4.setLabelId(
3
);label4.setSequnces(
3
);
LabelAlbum label5 =
new
LabelAlbum();
label5.setLabelId(
4
);label5.setSequnces(
2
);
List<labelalbum> list =
new
ArrayList<labelalbum>();
list.add(label1);
list.add(label2);
list.add(label3);
list.add(label4);
list.add(label5);
Collections.sort(list, CompareUtil.createComparator(
1
,
"labelId"
,
"sequnces"
));
for
(
int
i =
0
; i < list.size(); i++) {
LabelAlbum labelAlbum=list.get(i);
System.out.println(
"labelId:"
+labelAlbum.getLabelId()+
" sequence:"
+labelAlbum.getSequnces());
}
}
}</labelalbum></labelalbum></t>
多字段 java对象排序的更多相关文章
- Java 对象排序详解
很难想象有Java开发人员不曾使用过Collection框架.在Collection框架中,主要使用的类是来自List接口中的ArrayList,以及来自Set接口的HashSet.TreeSet,我 ...
- Java对象排序
java实现对象比较,可以实现java.lang.Comparable或java.util.Comparator接口 //Product.java import java.util.Date; //p ...
- java对象排序(Comparable)详细实例
对象实现Comparable接口 public class Field implements Comparable<Field>{ private String name; private ...
- [Java] 对象排序示例
package test.collections; import java.util.ArrayList; import java.util.Collection; import java.util. ...
- Java对象排序两种方法
转载:https://blog.csdn.net/wangtaocsdn/article/details/71500500 有时候需要对对象列表或数组进行排序,下面提供两种简单方式: 方法一:将要排序 ...
- Java笔记12:Java对象排序
代码: import java.util.Arrays; import java.util.Comparator; class Person { private String name; privat ...
- Java - 简单的对象排序 - Comparator
注:对象排序,就是对对象中的某一字段进行比较,以正序或倒序进行排序. 例: 需要排序的对象: public class Person { public int age; public String n ...
- Java对象比较器对泛型List进行排序-Demo
针对形如:字段1 字段2 字段3 字段n 1 hello 26 7891 world 89 5562 what 55 4562 the 85 452 fuck 55 995 haha 98 455 以 ...
- [个人原创]关于java中对象排序的一些探讨(三)
这篇文章由十八子将原创,转载请注明,并标明博客地址:http://www.cnblogs.com/shibazijiang/ 对对象排序也可以使用Guava中的Ordering类. 构造Orderin ...
随机推荐
- 快速理解C#高级概念(一) Delegate委托
做.NET开发很久,最近重新温习<C#高级编程>一书.发现很多曾经似懂非懂的问题,其实也是能够慢慢钻研慢慢理解的. 所以,打算开写<C#高级编程系列>博文.其中会借鉴<C ...
- linux 文件操作和权限
1.touch 创建文件 2.查看文件cat 浏览一个较短文件,行号加上cat -n 3.反向显示内容tac 并不支持-n选项 4.分页显示文件内容more 空格或f 翻页 回车换行 q或者Q退 ...
- vim查找替换
http://www.cnblogs.com/ltang/articles/2034291.html %: 表示百分百,表示所有 行的意思... 如果不指定行号, 则表示当前行; g: 表示一行中的所 ...
- jquery eval解析JSON中的注意点介绍
在JS中将JSON的字符串解析成JSON数据格式,一般有两种方式:使用eval()函数.使用Function对象来进行返回解析,下面有个示例,感兴趣的朋友可以参考下 在JS中将JSON的字符串解析 ...
- SAMBA 共享服务器搭建
yum install samba service smb start chkconfig smb on 1.给要共享的文件夹赋权限 777 2.修改 smb 的配置文件:/etc/samba/smb ...
- [译]Mongoose指南 - 中间件
中间件是一些函数, 当document发生init, validate, save和remove方法的时候中间件发生. 中间件都是document级别的不是model级别的. 下面讲讲两种中间件pre ...
- 【AngularJS】—— 13 服务Service
在AngularJS中有很多的服务,常用的比如$http,$location等等. 本篇文章会介绍一下的内容: 1 $http这种Angular提供的服务的使用 2 如何自定义服务,并总结服务需要注意 ...
- SQL如何将A,B,C替换为'A','B','C'
因为涉及到逗号,和单引号' 本来想一次转换成功, 但是最后貌似没有好的办法, 只有分两次完成了 select REPLACE(REPLACE('A,B,C',',','>,>'),'> ...
- 郝斌C语言代码
#include<stdio.h> int main() { ; printf("%#x\n",a); ; } /* output 0xf; */ //(15)10= ...
- linux 模块加载
错误: rmmod 时提示 rmmod: chdir(xxx): No such file or directory 解决方法: http://blog.csdn.net/luckywang1103/ ...