0

这是我的哈希图:

Map<String,String> unsortMap = new HashMap<String,String>()此地图包含如下值

unsortMap.put("18/06/2012", "18/06/2012");
unsortMap.put("19/06/2012", "19/06/2012");
unsortMap.put("20/06/2012", "20/06/2012");
unsortMap.put("26/06/2012", "26/06/2012");
unsortMap.put("27/06/2012", "27/06/2012");
unsortMap.put("04/07/2012", "04/07/2012");
unsortMap.put("13/07/2012", "13/07/2012");
unsortMap.put("29/06/2012", "29/06/2012");

我用来对该地图进行排序的代码如下:

package samples;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

public class SortMapExample{

   public static void main(String[] args) {

    System.out.println("Unsort Map......");
    Map<String,String> unsortMap = new HashMap<String,String>();

    unsortMap.put("18/06/2012", "18/06/2012");
    unsortMap.put("19/06/2012", "19/06/2012");
    unsortMap.put("20/06/2012", "20/06/2012");
    unsortMap.put("26/06/2012", "26/06/2012");
    unsortMap.put("27/06/2012", "27/06/2012");
    unsortMap.put("04/07/2012", "04/07/2012");
    unsortMap.put("13/07/2012", "13/07/2012");
    unsortMap.put("29/06/2012", "29/06/2012");

    Iterator iterator=unsortMap.entrySet().iterator();

        for (Map.Entry entry : unsortMap.entrySet()) {
            System.out.println("Key : " + entry.getKey() 
                + " Value : " + entry.getValue());
        }

        System.out.println("Sorted Map......");
        Map<String,String> sortedMap =  sortByComparator(unsortMap);

        for (Map.Entry entry : sortedMap.entrySet()) {
            System.out.println("Key : " + entry.getKey() 
                + " Value : " + entry.getValue());
        }
   }

   private static Map sortByComparator(Map unsortMap) {

        List list = new LinkedList(unsortMap.entrySet());

        //sort list based on comparator
        Collections.sort(list, new Comparator() {
             public int compare(Object o1, Object o2) {
               return ((Comparable) ((Map.Entry) (o1)).getValue())
               .compareTo(((Map.Entry) (o2)).getValue());
             }
    });

        //put sorted list into map again
    Map sortedMap = new LinkedHashMap();
    for (Iterator it = list.iterator(); it.hasNext();) {
         Map.Entry entry = (Map.Entry)it.next();
         sortedMap.put(entry.getKey(), entry.getValue());
    }
    return sortedMap;
   }    
}

我得到的结果是这样的:

Sorted Map......
Key : 04/07/2012 Value : 04/07/2012
Key : 13/07/2012 Value : 13/07/2012
Key : 18/06/2012 Value : 18/06/2012
Key : 19/06/2012 Value : 19/06/2012
Key : 20/06/2012 Value : 20/06/2012
Key : 26/06/2012 Value : 26/06/2012
Key : 27/06/2012 Value : 27/06/2012
Key : 29/06/2012 Value : 29/06/2012

我希望结果如下所示:(地图也应按月份排序)

18/06/2012
19/06/2012
20/06/2012
26/06/2012
27/06/2012
29/06/2012
04/07/2012
13/07/2012

请帮我解决这个问题?

4

4 回答 4

4

parse()StringtoDate然后比较两个日期实例而不是String

请参阅此示例以转换StringDate,现在一旦您有了日期实例,它就已经实现了您可以简单使用的比较器

return dateInstance1.compare(dateInstance2)

在你的比较器中

注意:如果您将这些日期作为字符串从数据库中读取,请参阅此

于 2012-06-18T10:29:26.553 回答
4

因为HashMap是无序的。您应该使用TreeMap而不是HashMap. 而且您还需要解析StringDate进行比较。

详情:http ://docs.oracle.com/javase/1.5.0/docs/api/java/util/TreeMap.html

于 2012-06-18T10:30:16.920 回答
3

您正在对字符串进行排序,字符串的默认行为是按 ASCII 顺序排序。

如果您想以其他方式对键进行排序,则需要将它们转换为您真正想要的类型(在这种情况下为日期)

使用 SimpleDateFormat 将键转换为 Date 对象并进行比较。

于 2012-06-18T10:31:56.877 回答
2

将您的数据转换为 SortedMap,特别是TreeMap实例。

使用带有 Comparator 的构造函数,并在其中执行比较逻辑。

于 2012-06-18T10:37:30.693 回答