如何使用将从文本文件中读取的所有元素放入ArrayList < MonitoredData >中,其中MonitoredData类具有以下3个私有变量:private Date startingTime, Date finishTime, String activityLabel

文本文件Activities.txt如下所示:

2011-11-28 02:27:59     2011-11-28 10:18:11     Sleeping
2011-11-28 10:21:24     2011-11-28 10:23:36     Toileting
2011-11-28 10:25:44     2011-11-28 10:33:00     Showering
2011-11-28 10:34:23     2011-11-28 10:43:00     Breakfast

等等....

前2个字符串由一个空格分隔,然后是2个制表符,再一个空格是2个制表符。
String fileName = "D:/Tema 5/Activities.txt";

    try (Stream<String> stream = Files.lines(Paths.get(fileName))) {

        list = (ArrayList<String>) stream
                .map(w -> w.split("\t\t")).flatMap(Arrays::stream)
                .collect(Collectors.toList());

    } catch (IOException e) {

        e.printStackTrace();
    }

最佳答案

您需要引入一个工厂来创建MonitoredData,例如,我正在使用FunctionMonitoredData创建String[]:

Function<String[],MonitoredData> factory = data->{
   DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
   try{
     return new MonitoredData(format.parse(data[0]),format.parse(data[1]),data[2]);
     //                       ^--startingTime       ^--finishingTime      ^--label
   }catch(ParseException ex){
     throw new IllegalArgumentException(ex);
   }
};

然后您的代码在流上运行应如下所示,并且您不需要使用Collectors#toCollection强制转换结果:
list = stream.map(line -> line.split("\t\t")).map(factory::apply)
             .collect(Collectors.toCollection(ArrayList::new));

10-06 11:15