gpt4 book ai didi

python - 如何将 mmap 中的行读入字典?

转载 作者:行者123 更新时间:2023-12-01 07:36:50 25 4
gpt4 key购买 nike

我的 mmap 从磁盘打开一个 json 文件。目前我可以从文件中逐行读取,但我希望能够将此信息存储到键和值对的字典中,类似于 json 文件内容的结构。

目前,我使用以下代码行在 Windows 上逐行读取。

filename = 'C:\Workspace\tempfile.json'
resultsDictionary = {}
with open(filename, "r+b") as f:
map_file = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
for line in iter(map_file.readline, b""):
print(line)

# I want to be able to store it in a resultsDictionary so I could use that resultsDictionary in latter method in my python code. I am not sure on how to do this.

如有任何帮助,我们将不胜感激。

最佳答案

您应该使用json module来自Python标准库。

关于python - 如何将 mmap 中的行读入字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56958816/

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