当前位置:主页 > 软件编程 > Python代码 >

python中判断文件编码的chardet(实例讲解)

时间:2022-07-14 08:17:44 | 栏目:Python代码 | 点击:

1、实测,这个版本在32位window7和python3.2环境下正常使用。 

2、使用方法:把解压后所得的chardet和docs两个文件夹拷贝到python3.2目录下的Lib\site-packages目录下就可以正常使用了。 

3、判断文件编码的参考代码如下:

file = open(fileName, "rb")#要有"rb",如果没有这个的话,默认使用gbk读文件。     
buf = file.read() 
result = chardet.detect(buf) 
file = open(fileName,"r",encoding=result["encoding"]) 
content = file.readlines()

您可能感兴趣的文章:

相关文章