gpt4 book ai didi

c++ - 为什么 ofstream::write 在文件末尾添加额外的字节?

转载 作者:行者123 更新时间:2023-11-28 01:24:51 24 4
gpt4 key购买 nike

我正在尝试将以下字节写入文件

[03 00 01 00 FF 00 00 00 FF 00 00 00 FF]

但我一直在将以下字节添加到末尾

[03 01 0F C0 00 08 00 A0 00 C7 00 00 00 02 00 70 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00]

我已经阅读过,有人告诉我在打开文件时使用 std::ios::binary,这似乎没有帮助。这是我的代码

#include <fstream> 
#include <iostream>
#include <conio.h>
#include <iomanip>

using namespace std;

int main() {
int height = 1,
length = 3;
int data[] = {
0x3,0x0,0x1,0x0,
0xff, 0x0, 0x0,
0x0, 0xff, 0x0,
0x0, 0x0, 0xff
};

ofstream file("thing.dki", std::ios::binary);
for(int i = 0; i < sizeof(data); i++) {
file.write((char*) &data[i], 1);
}
file.close();

return 0;
}

最佳答案

尝试添加

using byte = unsigned char;

到你代码的顶部然后替换

int data[] 

byte data[]

问题是您已经将此作为整数数据解决,它可以根据您的操作系统架构和尾随零具有不同的大小,但如果您使用 char 而不是它会自动分配尽可能低的内存空间。

关于c++ - 为什么 ofstream::write 在文件末尾添加额外的字节?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54320928/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com