0

我正在尝试通过 C++ 在特定位置写入大小为 1 MB 的现有空白二进制文件。

ofstream of( filename, ofstream::binary );
of.seekp(1600, of.beg);
of.write(arr, 1024);
of.close();

通过将此缓冲区写入文件之前创建空白文件:

char *buffer = (char*)malloc(size);     
memset(buffer, ' ', size);

但是这段代码只是截断了整个 1MB 的空白文件并写入了这 1KB 的内容,文件的大小变成了 1KB。

也尝试使用app以及ate模式。当我尝试app这样的模式时:

ofstream of( filename, ofstream::binary | ofstream::app );
of.seekp(1600, of.beg);
of.write(arr, 1024);
of.close();

它将内容添加到文件的末尾。因此文件大小变为 1MB+1KB。

我想要做的是用一些数据覆盖文件中的 1KB 数据(目前它是空白空间)。这样它就不会更改文件大小或任何其他数据。

我在哪里做错了?

4

1 回答 1

3

采用

ofstream of( filename, ofstream::binary | ofstream::in | ofstream::out)

打开二进制文件进行更新。

请参阅 C++11 表 123 - 文件打开模式(在 27.9.1.4/3 中):

Table 132 — File open modes

 ios_base flag combination          stdio 
binary  in   out  trunc  app       equivalent
---------------------------------------------------
              +                      "w"    truncate/create for writing
              +           +          "a"    append - writes automatically seek to EOF
                          +          "a"    
              +     +                "w"    
        +                            "r"    open for read
---------------------------------------------------
        +     +                      "r+"   open for update (reading and writing)
        +     +     +                "w+"   truncate/create for update
        +     +           +          "a+"   open or create for update - writes seek to EOF
        +                 +          "a+"
---------------------------------------------------
  +           +                      "wb"   All same as above, but in binary mode
  +           +           +          "ab"
  +                       +          "ab"
  +           +     +                "wb"
  +     +                            "rb"
---------------------------------------------------
  +     +     +                      "r+b"
  +     +     +     +                "w+b"
  +     +     +           +          "a+b"
  +     +                 +          "a+b"
于 2013-10-25T18:49:57.557 回答