gpt4 book ai didi

Scala:输入流到数组[字节]

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

使用 Scala,从 InputStream 读取字节数组的最佳方法是什么?

我可以看到您可以将 InputStream 转换为 char 数组

Source.fromInputStream(is).toArray()

最佳答案

怎么样:

Stream.continually(is.read).takeWhile(_ != -1).map(_.toByte).toArray

更新:使用 LazyList 而不是 Stream(因为 Stream 在 Scala 3 中已弃用)

LazyList.continually(is.read).takeWhile(_ != -1).map(_.toByte).toArray

关于Scala:输入流到数组[字节],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4905393/

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