2

我有一个带有嵌套列表的文本文件(大约 300 MB 大),类似于这个:

[[4, 9, 11, 28, 30, 45, 55, 58, 61, 62, 63, 69, 74, 76, 77, 82, 87, 92, 93, 94, 95], [4, 9, 11, 28, 30, 45, 55, 58, 61, 62, 63, 69, 74, 76, 77, 82, 87, 92, 93, 94],[4, 9, 11, 28, 30, 45, 55, 58, 61, 62, 63, 69, 74, 76, 77, 82, 85, 87, 92, 93, 94, 95]]

这是我将文件读入haskellInteger列表的程序:

import qualified Data.ByteString as ByteStr

main :: IO ()

-- HOW to do the same thing but using ByteStr.readFile for file access?
main = do fContents <- readFile filePath 
          let numList = readNums fContents
          putStrLn (show nums)

这适用于小文本文件,但我想用它ByteString来快速读取文件。我发现readByteString 没有函数,你应该在 attoparsec 中编写自己的解析器,因为它支持解析 ByteStrings。

我如何使用它attoparsec来解析嵌套列表?

4

1 回答 1

5

数据似乎是 JSON 格式,因此您可以使用Data.Aeson decode适用于ByteString

import qualified Data.ByteString.Lazy as BL
import Data.Aeson
import Data.Maybe

main = do fContents <- BL.readFile filePath 
          let numList = decode fContents :: Maybe [[Int]]
          putStrLn (show $ fromJust numList)
于 2013-11-11T04:57:00.350 回答