gpt4 book ai didi

Kotlin Path.useLines { } - 如何不获取 IOException ("Stream closed")?

转载 作者:行者123 更新时间:2023-12-05 03:17:07 25 4
gpt4 key购买 nike

Kotlin 有很好的包装器和快捷方式,但有时我会发现不理解它们。

我有这个简化的代码:

class PipeSeparatedItemsReader (private val filePath: Path) : ItemsReader {
override fun readItems(): Sequence<ItemEntry> {

return filePath.useLines { lines ->
lines.map { ItemEntry("A","B","C","D",) }
}
}

然后我有:

    val itemsPath = Path(...).resolve()
val itemsReader = PipeSeparatedItemsReader(itemsPath)

for (itemEntry in itemsReader.readItems())
updateItem(itemEntry)

// I have also tried itemsReader.readItems().forEach { ... }

这非常简单 - 我希望这段代码给我一个序列,该序列打开一个文件并读取行、解析它们并提供 ItemEntry,并在用完时关闭文件。

然而,我得到的是 IOException("Stream closed")

不知何故,甚至在读取第一项之前(我已经调试过),在 Kotlin 的包装器中的某个地方,reader.in 变为 null,因此在 hasNext()< 中抛出此异常.

我在这里看到了类似的问题:Kotlin to chain multiple sequences from different InputStream?

其中包含许多我想避免的 Java 样板文件。

我应该如何使用 Path.useLines() 对这个序列进行编码?

最佳答案

名称中带有“use”的每个 Kotlin 助手都会在您传递的 lambda 末尾关闭底层资源(据我所知,至少这是 stdlib 中的约定)。最常见的例子是 AutoCloseable.use .

Path.useLines扩展也不异常(exception):

Calls the block callback giving it a sequence of all the lines in this file and closes the reader once the processing is complete. [emphasis mine]

这意味着 useLines 会在 block 完成后关闭行序列,因此您无法从中返回惰性序列,因为您无法在 useLines 函数返回。

因此,如果您想返回一个行序列供以后使用,您不能直接从 useLines 返回一个转换后的序列。序列实际上无法检测某人何时使用完它们,因此为什么 useLines 需要一个 lambda 来为序列提供“范围”或“生命周期”并知道何时关闭底层阅读器。

如果你想包装它,你有 2 个主要选择:拆分序列操作和关闭操作(使你的 PipeSeparatedItemsReader 可关闭),或使用 lambda 在readItems()useLines 的方式相同。

关于Kotlin Path.useLines { } - 如何不获取 IOException ("Stream closed")?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74303247/

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