如何解码 b'a\xXX 格式

发布于 2025-01-10 20:25:20 字数 863 浏览 0 评论 0原文

我正在尝试从 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵山崖 2025-01-17 20:25:20

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 a bytes 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文