按Java

时间:2017-12-12 01:05:30

标签: java mysql date jpa

我一直在尝试许多,很多(真的很多)代码来使我的对象列表按日期字段排序,尝试比较器,lambda和long等...

我没有做过任何工作,我的清单只是没有订购,我真的不知道还能做什么,我在这里多次搜索并尝试了我发现的一切。

我有一个帖子列表,有一个名为 created 的java.util.Date字段,这些帖子与名为category的实体有多对多的关系。

首先我创建了一个类别:

Category cat = catCtrl.get(5);

然后我得到帖子列表:

List<Post> list = cat.getPostList();

打印出列表:(ID +创建+标题)

  

45 Sat 11月25日03:36:06 MST 2017 Donec libero lacinia
  46 Mon 11月02日02:46:37 MST 2017 Etiam at bibendum mauris
  47 Sat 11月25日03:39:17 MST 2017 Cras vel orci nunc
  50 Sat 11月25日03:37:29 MST 2017 dasdasf

现在,我们的想法是按创建日期排序从最近到旧的列表:

  

46 Mon 11月27日02:46:37 MST 2017 Etiam at bibendum mauris
  47 Sat 11月25日03:39:17 MST 2017 Cras vel orci nunc
  50 Sat 11月25日03:37:29 MST 2017 dasdasf
  45 Sat Nov 25 03:36:06 MST 2017 Donec a libero lacinia

根据官方文件,这应该这样做:

Collections.sort(list, new Comparator<Post>() {
    public int compare(Post p1, Post p2) {
        return p1.getCreated().compareTo(p2.getCreated());
    }
});

然而,该代码根本不会改变顺序。

我失踪了什么?

2 个答案:

答案 0 :(得分:0)

@Poxxac

使用以下代码,为我工作。

package com.java;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

import com.google.common.collect.Multimap;
import com.google.common.collect.MultimapBuilder;

public class Test {

    public static void main(String[] args) {

        DateFormat df = new SimpleDateFormat("yyyyMMdd");

        Example example1 = new Example();
        example1.setDate(new Date());
        example1.setName("Name1");

        Example example2 = new Example();
        example2.setDate(new Date(System.currentTimeMillis()-48*60*60*1000));
        example2.setName("Name2");

        Example example3 = new Example();
        example3.setDate(new Date(System.currentTimeMillis()-24*60*60*1000));
        example3.setName("Name3");

        Multimap<String, Example> multimap = MultimapBuilder.treeKeys().linkedListValues().build();
        multimap.put(df.format(example1.getDate()), example1);
        multimap.put(df.format(example2.getDate()), example2);
        multimap.put(df.format(example3.getDate()), example3);


        System.out.println(multimap);

    }
}

class Example {

    private String name;

    private Date date;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    @Override
    public String toString() {
        return "Example [name=" + name + ", date=" + date + "]";
    }

}

答案 1 :(得分:0)

测试功能:

public void test()
{
    Date date1 = DateUtils.convertToDate("2017-11-20");
    Date date2 = DateUtils.convertToDate("2017-11-21");
    Date date3 = DateUtils.convertToDate("2017-11-22");

    Demo demo1 = new Demo(1, date1);
    Demo demo2 = new Demo(2, date2);
    Demo demo3 = new Demo(3, date3);
    List<Demo> demos = new ArrayList<Demo>();
    demos.add(demo1);
    demos.add(demo2);
    demos.add(demo3);

    for(Demo item : demos){
        System.out.println(item.toString());
    }

    Collections.sort(demos, new Comparator<Demo>(){
        public int compare(Demo o1, Demo o2){
            return o2.create.compareTo(o1.create);
        }
    });
    System.out.println("========== ordered =============");
    for(Demo item : demos){
        System.out.println(item.toString());
    }
}

输出:

1-Mon Nov 20 00:00:00 GMT+08:00 2017
2-Tue Nov 21 00:00:00 GMT+08:00 2017
3-Wed Nov 22 00:00:00 GMT+08:00 2017
========== ordered =============
3-Wed Nov 22 00:00:00 GMT+08:00 2017
2-Tue Nov 21 00:00:00 GMT+08:00 2017
1-Mon Nov 20 00:00:00 GMT+08:00 2017

还有一个问题,您可能正在使用课程java.util.LinkedList来讲述这些datas

注意:类DateUtils是我自己的定义。