如何解码 b'a\xXX 格式
我正在尝试从 .db3 文件读取数据,这就是我获取数据库中每一行的方式 .db3 表是 MBinary,列是 Five_bboxes (https://i.sstatic.net/DiN96. .png) con = sqlite3.connect(文件名) cursorID = con.cursor() # 记录 ID
cursor = con.cursor() # to get data
cursor.execute('SELECT five_bboxes FROM MBinary')
for row in cursor.fetchall():
zobj = zlib.decompressobj()
unknown_data = zobj.decompress(row[0])
print(f"unknown_data:{unknown_data}")
OUTPUT:
未知数据:b'a\x00\x00\x00\xe2\x00\x00\x00\xb5\x00\x00\x00\xf3\x02\x00\x00\xa 3\x00\x00\x00\xd0\x00\x00\x00\xf1\x00\x00\x00\xf6\x02\x00\x00u\x00\x00\x00\xd4\x 00\x00\x00\xff\x00\x00\x00\x00\x03\x00\x00c\x00\x00\x00\xd7\x00\x00\x00\xe6\x00 \x00\x00e\x01\x00\x00a\x00\x00\x00n\x02\x00\x00\xf1\x00\x00\x00\xfa\x02\x00\x00'
I'm trying to read data from .db3 file, this is how I get each row in database
.db3 the table is MBinary and the column is five_bboxes (https://i.sstatic.net/DiN96.png)
con = sqlite3.connect(fileName)
cursorID = con.cursor() # to record ID
cursor = con.cursor() # to get data
cursor.execute('SELECT five_bboxes FROM MBinary')
for row in cursor.fetchall():
zobj = zlib.decompressobj()
unknown_data = zobj.decompress(row[0])
print(f"unknown_data:{unknown_data}")
OUTPUT:
unknown_data:b'a\x00\x00\x00\xe2\x00\x00\x00\xb5\x00\x00\x00\xf3\x02\x00\x00\xa3\x00\x00\x00\xd0\x00\x00\x00\xf1\x00\x00\x00\xf6\x02\x00\x00u\x00\x00\x00\xd4\x00\x00\x00\xff\x00\x00\x00\x00\x03\x00\x00c\x00\x00\x00\xd7\x00\x00\x00\xe6\x00\x00\x00e\x01\x00\x00a\x00\x00\x00n\x02\x00\x00\xf1\x00\x00\x00\xfa\x02\x00\x00'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
b'foo'
内容是 Python 如何格式化字节数组以进行打印,因此您拥有的很可能是一个bytes
对象。这些在 "内置类型" 部分中进行了描述。 href="https://docs.python.org/3/library/index.html" rel="nofollow noreferrer">Python 库参考手册。标准库的
struct
模块可能有助于将字节解码为有用的东西,但这完全取决于这些字节代表什么以及它是如何编码的,这不是Python问题。The
b'foo'
stuff is how Python formats a byte array for printing, so what you have there is most likely abytes
object. These are described in the "Built-in Types" section of the Python library reference manual.The
struct
module of the standard library may be useful in decoding the bytes to something useful, but that depends entirely on what those bytes represent and how it is encoded, which is not a Python question.