1
cute 2013-12-13 15:48:19 +08:00
python下我使用的chardet.
效果还不错. |
2
scalaview 2013-12-13 17:55:13 +08:00
chardet+1
>>> import urllib >>> rawdata = urllib.urlopen('http://www.google.cn/').read() >>> import chardet >>> chardet.detect(rawdata) {'confidence': 0.98999999999999999, 'encoding': 'GB2312'} |