1 Star 0 Fork 0

ycy2017/python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
readjson.py 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
ahycy 提交于 2019-08-25 22:43 . json 和io
# -*- coding: utf-8 -*-
# 第一个python语言
print("hello word!!!");
class JSONUtils(object):
"""docstring fos JSONUtils"""
def __init__(self):
print(" init ");
#把文转换成 字符串数组
super(FileUtils, self).__init__()
def readJsonFile(self,filePath):
# try:
# f = open(filePath,"r",encoding="utf-8");
# print (f.read());
# finally:
# if f:
# f.close();
for line in open(filePath,"r",encoding ="utf-8"):
print(line);
jsonUtils = JSONUtils();
jsonUtils.readJsonFile("C:\\Users\\Administrator\\Desktop\\conf\\luceneindex\\shop.json");
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/helloword999/python.git
git@gitee.com:helloword999/python.git
helloword999
python
python
master

搜索帮助