在 C++ 中,使用 ofstream 類別在檔案指定位置插入內容:開啟檔案並定位插入點。使用
在 C++ 中,可以使用 ofstream
類別在檔案指定位置插入內容。以下是如何實現的步驟:
首先,需要使用ofstream
物件開啟檔案:
ofstream file("file_name.txt");
接下來,需要定位要插入內容的地方。可以透過以下方式實現:
// 定位到文件的偏移量为 offset 的位置 file.seekp(offset, ios::beg);
定位到插入點後,就可以使用 運算子插入內容:
file << "要插入的内容";
假設有一個名為data.txt
的文件,內容為:
这是一行内容。
要將"新內容" 插入到文件的第二行之後,可以執行以下操作:
#include <iostream> #include <fstream> using namespace std; int main() { // 打开文件 ofstream file("data.txt"); // 定位到第二行之后 file.seekp(15, ios::beg); // 15 是第二行开头之前的字节数 // 插入内容 file << "新内容" << endl; return 0; }
儲存並執行此程式後,data.txt
的內容將變為:
这是一行内容。 新内容
以上是如何使用C++在檔案指定位置插入內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!