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++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- CString 到 char* 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
