跳至主要內容

解决python读取文件编码问题

爱喝水的木子...小于 1 分钟codepython

import chardet


# 获取文件编码
def get_file_encode(file_path):
    with open(file_path, 'rb') as f:
        return chardet.detect(f.read())['encoding']

评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v3.1.3