如何从JSON获得字符串对象而不是Unicode?我在用Python 2来解析JSONASCII编码文本文件。当加载这些文件时json或simplejson,我的所有字符串值都转换为Unicode对象,而不是String对象。问题是,我必须对一些只接受字符串对象的库使用数据。我不能改变图书馆也不更新他们。是否有可能获得字符串对象而不是Unicode对象?例>>> import json>>> original_list = ['a', 'b']>>> json_list = json.dumps(original_list)>>> json_list'["a", "b"]'
>>> new_list = json.loads(json_list)>>> new_list[u'a', u'b'] # I want these to be of type `str`, not `unicode`更新有人问了这个问题很久以前当我被困在Python 2..今天,一个简单而干净的解决方案是使用Python的最新版本-即Python 3向前看。
3 回答
MM们
TA贡献1886条经验 获得超2个赞
def byteify(input): if isinstance(input, dict): return {byteify(key): byteify(value) for key, value in input.iteritems()} elif isinstance(input, list): return [byteify(element) for element in input] elif isinstance(input, unicode): return input.encode('utf-8') else: return input
json.load
json.loads
若要支持Python2.6或更高版本,请替换 return {byteify(key): byteify(value) for key, value in input.iteritems()}
带着 return dict([(byteify(key), byteify(value)) for key, value in input.iteritems()])
,因为字典理解直到Python2.7才被支持。 由于这个答案在整个解码对象中反复出现,它具有一些不受欢迎的性能特征,可以通过非常小心地使用 object_hook
或 object_pairs_hook
参数。 到目前为止,是唯一一个能够正确完成这一任务的人,尽管结果是,它比我的方法要复杂得多。
添加回答
举报
0/150
提交
取消