大部分的排序可用Collections 类的sort方法实现
Collections.sort(volist, new Comparator<EleAnalyseVO>() {
public int compare(EleAnalyseVO o1, EleAnalyseVO o2) {
// TODO Auto-generated method stub
return o1.getDate().compareTo(o2.getDate());
}
EleAnalyseVO:类
getDate():EleAnalyseVO类中date属性的get方法 |