gpt4 book ai didi

haskell - 如何从 Haskell 中的文件中读取字节数组?

转载 作者:行者123 更新时间:2023-12-05 04:02:54 25 4
gpt4 key购买 nike

当我想从 Java 文件中读取字节时,我可以这样做:

InputStream is = new FileInputStream(...);
while((int b = is.read()) != -1){
//...analysis the bytes.
}

在 Haskell 中如何实现?我没有看到任何可以读取字节模块 System.IO 和 Data.ByteString 的函数。

最佳答案

使用readFile

import Data.ByteString(readFile)

main = do
content <- Data.ByteString.readFile "path/to/file"
print content

它读取文件并将其内容打印在屏幕上。

关于haskell - 如何从 Haskell 中的文件中读取字节数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54016841/

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