如何使用 txt 文件中的数据填充 HashMap

How to populate a HashMap with data from a txt file

我需要将 Dates.txt 文件中的以下日期放入 HashMap。

1 05.05.2017
2 11.12.2018
3 05.30.2020
4 03.15.2011
5 12.15.2000
6 10.30.2010
7 01.01.2004
8 12.31.1900
9 02.28.2014
10 10.10.2012

HashMap 的格式应该是

初始哈希图:

2017-05-05:1
2018-11-12:2
2020-05-30:3
2011-03-15:4
2000-12-15:5
2010-10-30:6
2004-01-01:7
1900-12-31:8
2014-02-28:9
2012-10-10:10

到目前为止我的代码片段

public class driver {
    public static void main(String[] args) throws FileNotFoundException {
        HashMap <LocalDate, Integer> dates = new HashMap <LocalDate, Integer>();
        Scanner s = new Scanner(new File("Dates.txt")); 
        while(s.hasNext())
        {
           dates.put(LocalDate.parse("mm.dd.yyyy"), Integer);
        }   

        System.out.println(dates);
    }
}

我无法确定要在我的 dates.put(key,value) 代码行中放入什么,因此 HashMap 的格式如上。我不确定将 txt 文件读入 ArrayList 然后使用 put() 填充 HashMap 是否更好。任何指导或答案将不胜感激!

您可以按照以下方式进行:

Map<LocalDate, Integer> map = new HashMap<>();
Scanner s = new Scanner(new File("Dates.txt"));
while (s.hasNextLine()) {
    // Read a line
    String line = s.nextLine();
    // Split the line on whitespace
    String[] data = line.split("\s+");
    if (data.length == 2) {
        map.put(LocalDate.parse(data[1], DateTimeFormatter.ofPattern("MM.dd.uuuu")), Integer.valueOf(data[0]));
    }
}
System.out.println(map);

以给定模式解析日期字符串的示例:

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

public class Main {
    public static void main(String[] args) {
        LocalDate date = LocalDate.parse("05.05.2017", DateTimeFormatter.ofPattern("MM.dd.uuuu"));
        System.out.println(date);
    }
}

输出:

2017-05-05

Trail: Date Time.

了解有关现代 date-time API 的更多信息

从给定的数据来看,似乎没有真正的理由使用地图 - 正如您所指出的,您一直在努力寻找合适的值。您可以将它们累积到 ArrayList,如果顺序不重要,甚至可以累积到 HashSet

作为已经提供的优秀答案的替代方案,这可以通过使用流来完成:

Map<LocalDate, Integer> result = Files.lines(Paths.get("Dates.txt")
    .map(l -> l.split(" ")).filter(fs -> fs.length == 2)
    .collect(Collectors.toMap(
         fs -> LocalDate.parse(fs[1], DateTimeFormatter.ofPattern("MM.dd.uuuu")), 
         fs -> Integer.valueOf(fs[0]));