Python: 自定义类对象序列化为Json串
2019-03-06 07:18:35来源:博客园 阅读 ()
之前已经实现了Python: Json串反序列化为自定义类对象,这次来实现了Json的序列化。
测试代码和结果如下:
import Json.JsonTool class Score: math = 0 chinese = 0 class Book: name = '' type = '' class Student: id = '' name = '' score = Score() books = [Book()] student = Student() json_data = '{"id":"123", "name":"kid", "score":{"math":100, "chinese":98}, ' \ '"books":[{"name":"math", "type":"study"}, ' \ '{"name":"The Little Prince", "type":"literature"}]} ' Json.JsonTool.json_deserialize(json_data, student) print(student.name) print(student.score.math) print(student.books[1].name) student_str = Json.JsonTool.json_serialize(student) print(student_str) input("\n按回车键退出。")
运行结果:
kid 100 The Little Prince {"books": [{"name": "math", "type": "study"}, {"name": "The Little Prince", "type": "literature"}], "id": "123", "name": "kid", "score": {"chinese": 98, "math": 100}} 按回车键退出。
实现代码如下:
def json_serialize(obj): obj_dic = class2dic(obj) return json.dumps(obj_dic) def class2dic(obj): obj_dic = obj.__dict__ for key in obj_dic.keys(): value = obj_dic[key] obj_dic[key] = value2py_data(value) return obj_dic def value2py_data(value): if str(type(value)).__contains__('.'): # value 为自定义类 value = class2dic(value) elif str(type(value)) == "<class 'list'>": # value 为列表 for index in range(0, value.__len__()): value[index] = value2py_data(value[index]) return value
原文链接:https://www.cnblogs.com/magic8sky/p/10482073.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash