我在python 3.2中使用chardet 2.01,源代码像这个网站http://getpython3.com/diveintopython3/case-study-porting-chardet-to-python-3.html
我使用 lxml2 解析 html 以获取一些字符串
,并使用下面的代码来检测编码
chardet.detect(name)
但是出现错误
Traceback (most recent call last):
File "C:\python\test.py", line 125, in <module>
print(chardet.detect(str(name)))
File "E:\Python32\lib\site-packages\chardet\__init__.py", line 24, in detect
u.feed(aBuf)
File "E:\Python32\lib\site-packages\chardet\universaldetector.py", line 98, in feed
if self._highBitDetector.search(aBuf):
TypeError: can't use a bytes pattern on a string-like object
name
是一个字符串对象
将字符串转换为字节意味着用'utf-8','big5'等编码对其进行编码
,charset会检测你所做的编码......不是原始字符串的编码
我不知道这个问题...