C++ 二进制写入或读取

c++ binary write or read

本文关键字:读取 二进制 C++      更新时间:2023-10-16

当我尝试将文本转换为二进制格式时遇到问题:

如下面的代码所述,它适用于 test3.txt 或 test4.txt,但是,fout3.write(str1.data() ,len);不适用于 test5.txt(这真的让我感到困惑),所以我改用fout3.write(reinterpret_cast<char *>(& str1) ,len);,它运行良好。

#include <cassert>
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(void)
{
   ofstream fout("test3.txt", ios::out | ios::binary);
   fout << "ABCn";
   fout.close();
   int test =  111;
   ofstream fout1("test4.txt", ios::out | ios::binary);
   fout1.write(reinterpret_cast<char *>(&test), sizeof(int));
   fout1.close();
   int test2;
   ifstream fin("test4.txt", ios::in | ios::binary);
   fin.read(reinterpret_cast<char *>(&test2), sizeof(int));
   cout << test2 << endl;
   string str1 = "ATEGWGEf";
   int len = str1.length();
   cout << str1.data() << endl;
   ofstream fout3("test6.txt", ios::out | ios::binary);
// fout3.write(str1.data() ,len);
   fout3.write(reinterpret_cast<char *>(& str1) ,len);
   fout3.close();
   string line;
   ifstream fin2("test6.txt",  ios::in | ios::binary);
   fin2.read(reinterpret_cast<char *>(&line),300);
   cout << line << endl;
   return 0;
}

但另一个问题来找我。当我试图阅读刚刚写的test6.txt时, 它失败了,出现这样的错误。

*** glibc detected *** ./binary_file.debug: double free or corruption (fasttop): 0x0000000001e4c260 ***
======= Backtrace: =========
/lib64/libc.so.6[0x3155275366]
/usr/lib64/libstdc++.so.6(_ZNSsD1Ev+0x39)[0x317209d4c9]
./binary_file.debug[0x4010f3]
/lib64/libc.so.6(__libc_start_main+0xfd)[0x315521ecdd]
./binary_file.debug[0x400d69]
======= Memory map: ========
......................
01e4a000-01e6b000 rw-p 00000000 00:00 0                                  [heap]
3154a00000-3154a20000 r-xp 00000000 fd:00 3031286                        /lib64/ld-2.12.so
3154c1f000-3154c20000 r--p 0001f000 fd:00 3031286                        /lib64/ld-2.12.so
3154c20000-3154c21000 rw-p 00020000 fd:00 3031286                        /lib64/ld-2.12.so
3154c21000-3154c22000 rw-p 00000000 00:00 0
3155200000-3155389000 r-xp 00000000 fd:00 3033037                        /lib64/libc-2.12.so
3155389000-3155588000 ---p 00189000 fd:00 3033037                        /lib64/libc-2.12.so
3155588000-315558c000 r--p 00188000 fd:00 3033037                        /lib64/libc-2.12.so
315558c000-315558d000 rw-p 0018c000 fd:00 3033037                        /lib64/libc-2.12.so
315558d000-3155592000 rw-p 00000000 00:00 0
3155600000-3155683000 r-xp 00000000 fd:00 3033062                        /lib64/libm-2.12.so
3155683000-3155882000 ---p 00083000 fd:00 3033062                        /lib64/libm-2.12.so
3155882000-3155883000 r--p 00082000 fd:00 3033062                        /lib64/libm-2.12.so
3155883000-3155884000 rw-p 00083000 fd:00 3033062                        /lib64/libm-2.12.so
3171c00000-3171c16000 r-xp 00000000 fd:00 3014674                        /lib64/libgcc_s-4.4.7-20120601.so.1
3171c16000-3171e15000 ---p 00016000 fd:00 3014674                        /lib64/libgcc_s-4.4.7-20120601.so.1
3171e15000-3171e16000 rw-p 00015000 fd:00 3014674                        /lib64/libgcc_s-4.4.7-20120601.so.1
3172000000-31720e8000 r-xp 00000000 fd:00 1719247                        /usr/lib64/libstdc++.so.6.0.13
31720e8000-31722e8000 ---p 000e8000 fd:00 1719247                        /usr/lib64/libstdc++.so.6.0.13
31722e8000-31722ef000 r--p 000e8000 fd:00 1719247                        /usr/lib64/libstdc++.so.6.0.13
31722ef000-31722f1000 rw-p 000ef000 fd:00 1719247                        /usr/lib64/libstdc++.so.6.0.13
31722f1000-3172306000 rw-p 00000000 00:00 0
7f1142209000-7f114220e000 rw-p 00000000 00:00 0
7f114222d000-7f1142230000 rw-p 00000000 00:00 0
7fff7ff9c000-7fff7ffb1000 rw-p 00000000 00:00 0                          [stack]
7fff7ffff000-7fff80000000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
Aborted (core dumped)

加上这个错误,我意外地成功地将二进制test6.txt转换为文本。我真的很想知道为什么以及如何修复此错误。

感谢!

不能只将指向类的指针转换为 char* 并将数据写入文件。例如,您希望如何解释指针?它们在读取时不会再指向有效地址,您在编写时不会考虑这一点,您只是写入地址。

使用 std::string::c_str() 获取指向字符串内部缓冲区的指针。

阅读的问题就在这一行:

fin2.read(reinterpret_cast<char *>(&line),300);

您要做的是将对象的地址转换为char *指针string。然后,您将覆盖其内部内容。这是错误的,它永远不会奏效。有些人建议使用这个:

fin2.read(reinterpret_cast<char *>(&line.c_str()),300);

好吧,它可以编译,但它应该在运行时崩溃。原因是std::string::c_str()返回const char *,而您正在抛弃constreinterpret_cast。也这很UB,因为 C++98 标准说:

程序不得更改此序列中的任何字符。