Python chardet检查文件的编码

2020-04-11  本文已影响0人  京樂春水

检查文件的编码
代码如下:

from chardet.universaldetector import UniversalDetector

with open("xxxx.cfg", 'rb') as fr:
    detector = UniversalDetector()
    for line in fr.readlines():
        print(line)
        detector.feed(line)
        if detector.done:
            break
    # 必须要有,否则检测不出结果
    detector.close()
    print(detector.result)

结果如下:

{'encoding': 'ascii', 'confidence': 1.0, 'language': ''}

参考:
https://www.cnblogs.com/amou/p/9142896.html

上一篇下一篇

猜你喜欢

热点阅读