Python 判断文本文件的编码类型
Posted WIN&迷失
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 判断文本文件的编码类型相关的知识,希望对你有一定的参考价值。
Python 判断文本文件的编码类型
def GetEncoding(file): """ 获取文本文件的编码类型 :param file: :return: 返回值是字典 {\'encoding\': \'utf-8\', \'confidence\': 0.99, \'language\': \'\'} """ txt = open(file, "rb") detector = UniversalDetector() for line in txt.readlines(): detector.feed(line) if detector.done: break detector.close() txt.close() return detector.result
以上是关于Python 判断文本文件的编码类型的主要内容,如果未能解决你的问题,请参考以下文章