基本上,我有一个6.4GB的
XML文件,我想将其转换为
JSON,然后将其保存到磁盘.我目前正在使用i7 2700k和16GB的ram运行OSX 10.8.4,并运行
Python 64bit(双重检查).我收到一个错误,我没有足够的内存来分配.我该如何解决这个问题?
print 'opening' f = open('large.xml','r') data = f.read() f.close() print 'Converting' newJSON = xmltodict.parse(data) print 'Json Dumping' newJSON = json.dumps(newJSON) print 'Saving' f = open('newjson.json','w') f.write(newJSON) f.close()
错误:
Python(2461) malloc: *** mmap(size=140402048315392) Failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug Traceback (most recent call last): File "/Users/user/Git/Resources/largexml2json.py",line 10,in <module> data = f.read() MemoryError