我在基数256中有一个字节数组作为整数。所以它看起来像[0,120,255,30,21]。每个数字代表一个字节,如0 = 0000000,1 = 0000001,2 = 00000010等......
如何将此数组写入文件?我真的迷失了,我不知道从哪里开始。
答案 0 :(得分:2)
这是一个简单的例子:
#include <fstream.h>
char buffer[100] = {0, 120, 255, 30, 21, ... };
ofstream myFile ("data.bin", ios::out | ios::binary);
myFile.write (buffer, 100);
答案 1 :(得分:0)
您可以使用fstream
这样的http://www.cplusplus.com/forum/general/11272/在C ++中以二进制模式打开文件。
或以C兼容的方式打开文件,
fopen("test.bin", "bw+");
答案 2 :(得分:0)
你想要这样的东西:
ofstream my_bin_file;
my_bin_file.open("filename.bin", ios::out | ios::binary);
// some loop to get your int byte's
my_bin_file << byte;
my_bin_file.close();