|
@@ -19,20 +19,24 @@ error_bag_json = "/mnt/disk001/dcl_data_process/src/python2/pjisuv/errorBag.json
|
|
|
|
|
|
def parse_json_to_string_array(file_path):
|
|
def parse_json_to_string_array(file_path):
|
|
try:
|
|
try:
|
|
- # 打开并读取JSON文件
|
|
|
|
- with open(file_path, 'r', encoding='utf-8') as file:
|
|
|
|
- # 解析JSON内容
|
|
|
|
- data = json.load(file)
|
|
|
|
|
|
+ # 打开并读取JSON文件(Python 2中不支持encoding参数,需要使用codecs模块或处理文件读取后的编码)
|
|
|
|
+ with open(file_path, 'r') as file:
|
|
|
|
+ # 读取文件内容
|
|
|
|
+ file_content = file.read()
|
|
|
|
+ # 解析JSON内容(Python 2中json.loads用于解析字符串)
|
|
|
|
+ data = json.loads(file_content.decode('utf-8')) # 假设文件是UTF-8编码,这里需要手动解码
|
|
|
|
|
|
# 检查数据是否是一个列表,并且列表中的元素是否是字符串
|
|
# 检查数据是否是一个列表,并且列表中的元素是否是字符串
|
|
if isinstance(data, list):
|
|
if isinstance(data, list):
|
|
for item in data:
|
|
for item in data:
|
|
- if not isinstance(item, str):
|
|
|
|
|
|
+ if not isinstance(item, basestring): # Python 2中字符串类型包括str和unicode,用basestring检查
|
|
raise ValueError("JSON数组中的元素不是字符串")
|
|
raise ValueError("JSON数组中的元素不是字符串")
|
|
return data
|
|
return data
|
|
else:
|
|
else:
|
|
return []
|
|
return []
|
|
except Exception as e:
|
|
except Exception as e:
|
|
|
|
+ # 在Python 2中,你可能想要打印异常或执行其他错误处理
|
|
|
|
+ # print "An error occurred:", e # 如果你想要打印错误信息,使用这种格式
|
|
return []
|
|
return []
|
|
|
|
|
|
|
|
|
|
@@ -45,13 +49,14 @@ def list_to_json_file(data, file_path):
|
|
data (list): 要转换为JSON的列表。
|
|
data (list): 要转换为JSON的列表。
|
|
file_path (str): 要写入JSON数据的文件路径。
|
|
file_path (str): 要写入JSON数据的文件路径。
|
|
"""
|
|
"""
|
|
- # 将列表转换为JSON格式的字符串
|
|
|
|
|
|
+ # 将列表转换为JSON格式的字符串,并确保输出为UTF-8编码的字符串
|
|
json_data = json.dumps(data, ensure_ascii=False, indent=4)
|
|
json_data = json.dumps(data, ensure_ascii=False, indent=4)
|
|
|
|
+ json_data_utf8 = json_data.encode('utf-8') # 编码为UTF-8
|
|
|
|
|
|
# 以写入模式打开文件,如果文件已存在则覆盖
|
|
# 以写入模式打开文件,如果文件已存在则覆盖
|
|
- with open(file_path, 'w', encoding='utf-8') as file:
|
|
|
|
- # 将JSON字符串写入文件
|
|
|
|
- file.write(json_data)
|
|
|
|
|
|
+ with open(file_path, 'w') as file:
|
|
|
|
+ # 将UTF-8编码的JSON字符串写入文件
|
|
|
|
+ file.write(json_data_utf8)
|
|
|
|
|
|
|
|
|
|
def generate_xosc(parse_prefix, local_parse_dir, local_delete_list):
|
|
def generate_xosc(parse_prefix, local_parse_dir, local_delete_list):
|