批量文件编码转换用python实现的utf8转gb2312, 任意编码之间的相互转换都是可以的.改一下下面的参数即可 convert.py文件内容如下 import os import glob import chardet #检测文件编码类型 def detect_file_encoding(file_path): with open(file_path, 'rb') as f: data = f.read() result = chardet.detect...