C++でファイルに読み書き
ファイルに書き込む
#include <fstream> using namespace std; int main() { string str = "書き込む内容"; ofstream ofs; ofs.open( "text.txt" );//書き込むファイルを開く ofs << str << std::endl; ofs.close(); return 0; }
ファイルを読み込む
#include <fstream> #include <iostream> using namespace std; int main() { string str; ifstream ifs; ifs.open( "text.txt" );//読み込むファイルを開く ifs >> str; ifs.close(); cout << str << endl; return 0; }