gpt4 book ai didi

scala - 在 Scala 中,从文件读取时如何跳过第一行?

转载 作者:行者123 更新时间:2023-12-03 21:06:39 25 4
gpt4 key购买 nike

该文件非常大,所以我无法存储在内存中。我逐行迭代如下

for (line <- Source.fromFile(file).getLines) {
}

如何指定应跳过第一行?

最佳答案

怎么样:

for (line <- Source.fromFile(file).getLines.drop(1)) {
// ...
}
drop将简单地推进迭代器(由 getLines 返回)超过指定数量的元素。

关于scala - 在 Scala 中,从文件读取时如何跳过第一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6969016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com