c++ 写入文件、读取文件
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
#include <iostream> #include <string> #include <fstream> using namespace std; // 写入 void write(char * filePath, char * data) { // 以写模式打开文件 ofstream outfile; outfile.open(filePath); cout << "Writing to the file" << endl; cout << "Enter your name: "; cin.getline(data, 100); // 向文件写入用户输入的数据 outfile << data << endl; cout << "Enter your age: "; cin >> data; cin.ignore(); // 再次向文件写入用户输入的数据 outfile << data << endl; // 关闭打开的文件 outfile.close(); } // 读取 void read(char * filePath, char * data) { // 以读模式打开文件 ifstream infile; infile.open(filePath); cout << "Reading from the file" << endl; infile >> data; // 在屏幕上写入数据 cout << data << endl; // 再次从文件读取数据,并显示它 infile >> data; cout << data << endl; // 关闭打开的文件 infile.close(); } int main() { char data[100]; char filePath[64] = "afile.dat"; // 写入 write(filePath, data); // 读取 read(filePath, data); system("pause"); return 0; } |