如何使用流将我从文本文件中读取的所有元素放入ArrayList < MonitoredData >
,其中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
依旧......
前两个字符串由一个空格分隔,然后是两个标签,再一个空格,两个标签。
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();
}
答案 0 :(得分:3)
您需要介绍工厂来创建MonitoredData
,例如我使用Function
从MonitoredData
创建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));