在 C++ 中读取文件某个位置的字节;

发布于 2025-01-08 18:55:49 字数 80 浏览 0 评论 0原文

是否可以打开一个文件并读取某个位置的唯一字节,而不必将所有文件加载到数组中?

例如,有一个 10 字节的文件,读取第 5 个字节。

Is it possible to open a file and reading an only byte at a certain position without having to load all the file into an array?

For example, having a file of 10 bytes, and reading the 5th.

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

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

发布评论

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

评论(2

内心旳酸楚 2025-01-15 18:55:49

是的,使用 istream::seekg 来寻找您想要的位置读取,然后 istream::get 读取一个字节(或<一href="http://en.cppreference.com/w/cpp/io/basic_istream/read" rel="noreferrer">istream::read 读取多个字节)。

Yes, use istream::seekg to seek to the position you want to read from, and then istream::get to read a byte (or istream::read to read more than one byte).

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