我正在尝试填充包含页眉和页脚字符串的字符串列表,主要内容是本地读取的文件。下面的文本文件“textFile”包含一个字符串列表。
这是我正在尝试的:
var fileList = List[String]()
val bigFile = io.Source.fromFile("d:\\textFile.txt")
val groupedLines = bigFile.getLines.grouped(20000).zipWithIndex
groupedLines.foreach(group => {
val (lines, index) = group
fileList.addString(new StringBuilder("begin"))
//How can I add the contents of the file here to the val fileList ???
fileList.add(lines.)
fileList.addString(new StringBuilder("end"))
}