拆分流并从文本文件中放入列表

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

File 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个标签。

 String fileName = "D:/Tema 5/Activities.txt"; try (Stream stream = Files.lines(Paths.get(fileName))) { list = (ArrayList) stream .map(w -> w.split("\t\t")).flatMap(Arrays::stream) // \\s+ .collect(Collectors.toList()); //list.forEach(System.out::println); } catch (IOException e) { e.printStackTrace(); } 

你需要引入一个工厂来创建MonitoredData ,例如我使用一个FunctionString[]创建一个MonitoredData

 Function 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); } }; 

那么您的代码在流上运行应该如下所示,并且您不需要使用收集器#toCollection来转换结果:

 list = stream.map(line -> line.split("\t\t")).map(factory::apply) .collect(Collectors.toCollection(ArrayList::new));