-1

我正在尝试按(类型日期) MyObject.getDate() 对 ArrayList 进行排序

我的格式由 dd-mm-yyyy 的 SimpleDateFormat 格式化;我正在使用自定义比较器对列表进行排序。我正在使用 Collections.sort(productList, new CustomComparator())

问题我的排序列表仅按 dd 而不是 dd-mm-yyyy。

有任何想法吗?

public class Product
{
    private String productName; 
    private Date boughtOn;
    private Date useBy; 
    private double boughtAt; 
    private long quantity; 
    private static DateFormat dateFormat;


    public Date getUseBy()
    {
        return useBy;
    }
    public void setUseBy(Date useBy)
    {
        this.useBy = useBy;
    }
}

public static Date rtnDate(String dateStr, int currentLineCount)
    {
        SimpleDateFormat df = new SimpleDateFormat("dd-mm-yyyy");
        try
        {   
            Date date = df.parse(dateStr);
            return date;
        }
        catch (ParseException e)
        {
            productParsingErrorMessages.add("Date parse exception: " + e + "on line " + currentLineCount);
            return null;
        }

//      DateFormat formatter = new SimpleDateFormat("dd-mm-yyyy");
//      Date date2 = (Date)formatter.parse(dateStr);
    }
System.out.println("Product list - BEFORE sorting by UseBy");
printInventory(produuctList);

Collections.sort(produuctList, new CustomComparator());

System.out.println("Product list - AFTER sorting by UseBy");
printInventory(produuctList);
public class CustomComparator implements Comparator<Product>
{
    @Override
    public int compare(Product o1, Product o2)
    {
        return o1.getUseBy().compareTo(o2.getUseBy());
    }
}

产品列表 - 在按 UseBy 排序之前

产品名称:糖 UseBy : 12-12-2012
产品名称: Sugar UseBy : 01-10-2012
产品名称: Sugar UseBy : 16-04-2012
产品名称: Sugar UseBy : 30-01-2012
产品名称: Sugar UseBy : 25-04-2012
产品名称:糖 UseBy : 03-04-2012
产品名称: Sugar UseBy : 08-04-2012

产品列表 - 按 UseBy 排序后

产品名称:糖 UseBy : 01-10-2012
产品名称: Sugar UseBy : 03-04-2012
产品名称: Sugar UseBy : 08-04-2012 产品名称:
Sugar UseBy : 12-12-2012
产品名称: Sugar UseBy : 16-04-2012
产品名称:糖 UseBy : 25-04-2012 产品名称:
Sugar UseBy : 30-01-2012

4

2 回答 2

1

如果您的格式字符串已正确复制,则您的 SimpleDateFormat 是错误的。应该dd-MM-yyyy不是dd-mm-yyyy,因为您感兴趣的是几个月,而不是几分钟

你有:

public static Date rtnDate(String dateStr, int currentLineCount)
{
    SimpleDateFormat df = new SimpleDateFormat("dd-mm-yyyy");

当你应该使用:

public static Date rtnDate(String dateStr, int currentLineCount)
{
    SimpleDateFormat df = new SimpleDateFormat("dd-MM-yyyy");

这将解释一切。

于 2012-05-27T03:36:01.833 回答
0

我大约 90% 确定您在比较java.lang.Strings 而不是java.util.Dates。鉴于您提到的日期格式,它显然会首先将所有日期排序在一起。例如,一整年,您的清单将开始:

01-01-2012 (1 Jan)
01-02-2012 (1 Feb)
01-03-2012 (1 Mar)

使用 Date 对象进行比较,而不是它的 String 表示。

PS图片不是代码。将您的代码放入您的问题中。

更新:证明您发布的代码按预期工作:

import java.text.DateFormat;
import java.util.*;

public class DateComparators {
    public static void main(String[] args) {
        List<Product> productList = Arrays.asList(
                new Product(new Date(2012 - 1900, 5, 1)), // 1 Jun 2012
                new Product(new Date(2012 - 1900, 1, 1)), // 1 Feb 2012
                new Product(new Date(2012 - 1900, 2, 15)), // 15 Mar 2012
                new Product(new Date(2012 - 1900, 0, 2)), // 2 Jan 2012
                new Product(new Date(2012 - 1900, 1, 2)), // 2 Feb 2012
                new Product(new Date(2012 - 1900, 0, 1)) // 1 Jan 2012
        );
        Collections.sort(productList, new CustomComparator());
        System.out.println(productList);
    }

    static class CustomComparator implements Comparator<Product> {
        @Override
        public int compare(Product o1, Product o2) {
            return o1.getUseBy().compareTo(o2.getUseBy());
        }
    }

    static class Product {
        private String productName; // sauce pan
        private Date boughtOn; // 4-5-2012
        private Date useBy; // 4-5-2012
        private double boughtAt; // $4.05
        private long quantity; // 9
        private static DateFormat dateFormat;

        Product(Date useBy) {
            this.useBy = useBy;
        }

        public Date getUseBy() {
            return useBy;
        }

        public void setUseBy(Date useBy) {
            this.useBy = useBy;
        }

        @Override
        public String toString() {
            return "\nuseBy=" + useBy;
        }
    }
}

输出:

[
useBy=Sun Jan 01 00:00:00 CST 2012, 
useBy=Mon Jan 02 00:00:00 CST 2012, 
useBy=Wed Feb 01 00:00:00 CST 2012, 
useBy=Thu Feb 02 00:00:00 CST 2012, 
useBy=Thu Mar 15 00:00:00 CDT 2012, 
useBy=Fri Jun 01 00:00:00 CDT 2012]

因此,您还没有向我们展示一切。问题出在你遗漏的东西上。

于 2012-05-27T03:23:01.377 回答