C++中簡略讀寫文本文件的完成辦法。本站提示廣大學習愛好者:(C++中簡略讀寫文本文件的完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C++中簡略讀寫文本文件的完成辦法正文
代碼以下所示:
#include "stdafx.h"
#include <iostream>
#include <fstream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
//寫入文件
ofstream ofs; //供給寫文件的功效
ofs.open("d:\\com.txt",ios::trunc); //trunc翻開文件時,清空已存在的文件流,若不存在此文件則先創立
int i;
char a = 'a';
for(i = 1; i != 27; ++i)
{
if(i < 10)
{
ofs << "0" << i << "\t" << a << "\n";
a ++;
}
else
{
ofs << i << "\t" << a << "\n";
a ++;
}
}
ofs.close();
//讀出文件到掌握台
char buffer[256];
ifstream ifs; //供給讀文件功效
ifs.open("d:\\com.txt",ios::in);//in--翻開文件做讀操作
cout << "d:\\com.txt" << "中的內容以下:" << endl;
while(!ifs.eof()) //斷定能否到達stream的開頭
{
ifs.getline(buffer, 256, '\n'); //字符到達256個或碰到換行就停止
cout << buffer << endl;
}
ifs.close();
}