gpt4 book ai didi

python - 从 ANSI 转换为 UTF-8

转载 作者:太空狗 更新时间:2023-10-29 22:29:56 24 4
gpt4 key购买 nike


我有大约 600,000 个以 ANSI 编码的文件,我想将它们转换为 UTF-8。我可以在 NOTEPAD++ 中单独执行此操作,但我不能对 600,000 个文件执行此操作。我可以在 RPython 中执行此操作吗?

我找到了这个链接,但是 Python 脚本没有运行: notepad++ converting ansi encoded file to utf-8

最佳答案

为什么不读取文件并将其写入为 UTF-8?您可以在 Python 中执行此操作。

#to support encodings
import codecs

#read input file
with codecs.open(path, 'r', encoding = 'utf8') as file:
lines = file.read()

#write output file
with codecs.open(path, 'w', encoding = 'utf8') as file:
file.write(lines)

关于python - 从 ANSI 转换为 UTF-8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31471087/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com