ファイルtxtへのエクスポートデータを作成する方法は知っていますが、すでにtxtファイルを作成している場合、データに適用されないそのファイルtxtを編集する方法は既に存在しています..これは、txtファイルに新しいデータ行を追加することも意味しますデータを持っている..
質問する
4057 次
2 に答える
2
fstream (#include < fstream >) を使用できます。
// declare variable "file"
std::fstream file;
// open file named "data.txt" for writing (std::fstream::app lets you add text to the end of the file)
file.open("data.txt", std::fstream::in | std::fstream::out | std::fstream::app);
// could not open file
if(!file.is_open()) {
// do something, e.g. print error message: std::cout << "Couldn't open file." << endl;
// file is open, you can write to it
} else {
file << "\n"; // add a new line to the file
file.close(); // close file
}
于 2013-06-04T17:29:12.660 に答える
2
あなたが探しているのはstd::ios_base::app
、あなたが書いたものを最後にファイルに追加するものです。
于 2013-06-04T17:05:24.313 に答える