OSError:[Errno 22]当我尝试.read()一个json文件时 [英] OSError: [Errno 22] when I try to .read() a json file

查看:166
本文介绍了OSError:[Errno 22]当我尝试.read()一个json文件时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是想用Python读取json文件。这样做时,我位于正确的文件夹中;我正在下载中,我的文件名为 Books_5.json。但是,当我尝试使用.read()函数时,出现错误

I am simply trying to read my json file in Python. I am in the correct folder when I do so; I am in Downloads, and my file is called 'Books_5.json'. However, when I try to use the .read() function, I get the error

OSError: [Errno 22] Invalid argument

这是我的代码:

import json
config = json.loads(open('Books_5.json').read())

这也会引发相同的错误:

This also raises the same error:

books = open('Books_5.json').read()

如果有帮助,这只是我数据看起来的一小段像这样:

If it helps, this is a small snippet of what my data looks like:

{"reviewerID": "A10000012B7CGYKOMPQ4L", "asin": "000100039X", "reviewerName": "Adam", "helpful": [0, 0], "reviewText": "Spiritually and mentally inspiring! A book that allows you to question your morals and will help you discover who you really are!", "overall": 5.0, "summary": "Wonderful!", "unixReviewTime": 1355616000, "reviewTime": "12 16, 2012"}
{"reviewerID": "A2S166WSCFIFP5", "asin": "000100039X", "reviewerName": "adead_poet@hotmail.com \"adead_poet@hotmail.com\"", "helpful": [0, 2], "reviewText": "This is one my must have books. It is a masterpiece of spirituality. I'll be the first to admit, its literary quality isn't much. It is rather simplistically written, but the message behind it is so powerful that you have to read it. It will take you to enlightenment.", "overall": 5.0, "summary": "close to god", "unixReviewTime": 1071100800, "reviewTime": "12 11, 2003"}

我在MacOSX上使用Python 3.6

I'm using Python 3.6 on MacOSX

推荐答案

似乎这是文件太大(我的文件约为10GB)时发生的错误。一旦我使用 split 分解了文件减少20万行, .read()错误就消失了。即使文件不是严格的json格式也是如此。

It appears that this is some kind of bug that occurs when the file is too large (my file was ~10GB). Once I use split to break up the file by 200 k lines, the .read() error goes away. This is true even if the file is not in strict json format.

这篇关于OSError:[Errno 22]当我尝试.read()一个json文件时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆