Python DBF:“ ascii”编解码器无法解码位置6的字节0xf6:序数不在范围内(128)
作者:互联网
我有一个字符串,其中包含我想您会称之为“特殊”字符的字符(在其上面有变音符号的o),并且它抛弃了我正在使用的DBF库(Ethan Furman的Python DBF库https://pypi.python.org/pypi/dbf extract_character()函数,最后出现错误)该函数的行是’ascii’编解码器,无法解码位置6的字节0xf6:序数不在range(128)内).
编码:
def retrieve_character(bytes, fielddef, memo, decoder):
"""
Returns the string in bytes as fielddef[CLASS] or fielddef[EMPTY]
"""
data = bytes.tostring()
if not data.strip():
cls = fielddef[EMPTY]
if cls is NoneType:
return None
return cls(data)
if fielddef[FLAGS] & BINARY:
return data
return fielddef[CLASS](decoder(data)[0]) #error on this line
解决方法:
dbf文件具有codepage属性.听起来好像文件没有正确设置.您知道哪个代码页用于创建数据吗?如果是这样,您可以在打开文件时覆盖dbf的设置:
table = dbf.Table('dbf_file', codepage='cp437')
cp437只是一个示例-使用任何合适的方法.
要查看dbf文件的当前代码页(假设您在打开时未覆盖),请使用:
table.codepage
如果您在打开文件时指定了错误的代码页,则非ascii数据可能会不正确(例如,带umlaut的o可能最终以代字号n开头).
标签:dbf,character-encoding,special-characters,string,python 来源: https://codeday.me/bug/20191030/1968080.html