Writing binary data to fstream in c++(用c ++将二进制数据写入fstream)
问题描述
我有一些结构要写入二进制文件.它们由来自 cstdint 的整数组成,例如 uint64_t
.有没有办法将它们写入二进制文件,而不需要我手动将它们拆分为 char
数组并使用 fstream.write()
函数?
I have a few structures I want to write to a binary file. They consist of integers from cstdint, for example uint64_t
. Is there a way to write those to a binary file that doesn not involve me manually splitting them into arrays of char
and using the fstream.write()
functions?
我天真的想法是,c++ 会发现我有一个二进制模式的文件,<<
会将整数写入该二进制文件.所以我尝试了这个:
My naive idea was that c++ would figure out that I have a file in binary mode and <<
would write the integers to that binary file. So I tried this:
#include <iostream>
#include <fstream>
#include <cstdint>
using namespace std;
int main() {
fstream file;
uint64_t myuint = 0xFFFF;
file.open("test.bin", ios::app | ios::binary);
file << myuint;
file.close();
return 0;
}
然而,这将字符串65535"写入文件.
However, this wrote the string "65535" to the file.
我能否以某种方式告诉 fstream 切换到二进制模式,例如如何使用 << 更改显示格式?std::hex
?
Can I somehow tell the fstream to switch to binary mode, like how I can change the display format with << std::hex
?
如果以上都失败了,我需要一个将任意 cstdint 类型转换为 char 数组的函数.
Failing all that above I'd need a function that turns arbitrary cstdint types into char arrays.
我并不真正关心字节序,因为我会使用相同的程序来读取它们(在下一步中),所以它会抵消.
I'm not really concerned about endianness, as I'd use the same program to also read those (in a next step), so it would cancel out.
推荐答案
是的,你可以,这就是 std::fstream::write
用于:
Yes you can, this is what std::fstream::write
is for:
#include <iostream>
#include <fstream>
#include <cstdint>
int main() {
std::fstream file;
uint64_t myuint = 0xFFFF;
file.open("test.bin", std::ios::app | std::ios::binary);
file.write(reinterpret_cast<char*>(&myuint), sizeof(myuint)); // ideally, you should memcpy it to a char buffer.
}
这篇关于用c ++将二进制数据写入fstream的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:用c ++将二进制数据写入fstream
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01