python从特定位置读取二进制文件

发布于 2024-12-09 10:49:44 字数 74 浏览 0 评论 0原文

我有一个巨大的二进制文件,我想从中读取文件中确切位置的一些字节。如何访问二进制文件中的特定字节,而不必从文件开头循环所有字节? 谢谢,

I have a huge binary file from which I want to read some bytes from exact positions in the file. How can I access specific bytes from binary file not having to loop through all bytes from the beginning of the file?
Thanx,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

天涯离梦残月幽梦 2024-12-16 10:49:45

确保使用“b”属性打开文件(例如:file("myfile.bin", "rb"))。然后使用文件对象的 seek() 方法。

看这里: http://docs.python.org/发布/2.4.4/lib/bltin-file-objects.html

Make sure you open the file with the "b" attribute (for example: file("myfile.bin", "rb")). Then use the seek() method of the file object.

Look here: http://docs.python.org/release/2.4.4/lib/bltin-file-objects.html

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