只需使用
str.depre和
str.enpre:
with open(ff_name, 'rb') as source_file: with open(target_file_name, 'w+b') as dest_file: contents = source_file.read() dest_file.write(contents.depre('utf-16').enpre('utf-8'))
str.depre将为您摆脱BOM表(并推断出字节序)。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)