- 论坛徽章:
- 0
|
python默认编码设为 'utf8',如下:
root@streaming qlive]# python
Python 2.6.4 (r264:75706, Jul 20 2011, 01:31:00)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-4 ] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.getdefaultencoding()
'utf8'
>>>
可是我在执行如下一条语句时,出现了问题:
(data 为一个字符串,len(data) = 0xcf)
data = '$' + struct.pack('B', + struct.pack( '!H', len(data) ) + data
系统报错如下:
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xcf in position 3: unexpected end of data
请大侠帮忙,谢谢。 |
|