mfc 怎么完成对txt文件的读取和写入

2024-11-22 05:52:56
推荐回答(4个)
回答(1):

我写了一个。

界面一个文本框两个按钮,文本框关联一个CString型变量m_Data,设置属性为Vertical scroll和Want return。斗辩

两个按钮对应的读写函数分别如下

void CFileTxtDlg::OnRead() 

{

 // TODO: Add your control notification handler code here

 CFileDialog fDlg(TRUE);

 fDlg.m_ofn.lpstrFilter 举瞎= "Text Files(*.txt)\0*.txt\0\0";

 if(fDlg.DoModal() == IDOK)

 {

  CStdioFile stdFile;

  stdFile.Open(fDlg.GetPathName(), CFile::modeRead 正销空| CFile::typeBinary);

  DWORD fileLen = stdFile.GetLength();

  char *pBuf = new char[fileLen + 1];

  pBuf[fileLen] = 0;

  stdFile.Read(pBuf, fileLen);

  UpdateData();

  m_Data = pBuf;

  UpdateData(FALSE);

  delete pBuf;

  stdFile.Close();

 }

}

void CFileTxtDlg::OnWrite() 

{

 // TODO: Add your control notification handler code here

 UpdateData();

 CFileDialog fDlg(FALSE);

 fDlg.m_ofn.lpstrFilter = "Text Files(*.txt)\0*.txt\0\0";

 fDlg.m_ofn.lpstrDefExt = "txt";

 if(IDOK == fDlg.DoModal())

 {

  CStdioFile stdFile;

  stdFile.Open(fDlg.GetPathName(), CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);

  stdFile.WriteString(m_Data);

  stdFile.Close();

 }

}

如要源代码发消息

回答(2):

//创建一个文本文件并写入信息
//同向屏幕上输出信息一样将信息输出至文件
#include
#include
void main()
{
ofstream f1("d:\\me.txt"); /坦纳/打开文件用于写,若文件不存在就创建它
if(!f1)return; //打开文件失败则结束运行
f1< f1< f1.close(); //关闭文件
}
运行后打开文件d:\me.txt,其内容如下:
姓名:廉东方
家庭地址:河南郑州

文件操作:
打开文件
文件名
注意路径名中的斜杠要双写,如:
"D:\\MyFiles\\ReadMe.txt"
文件打开方式选项:
ios::in = 0x01, //供读,文件不存在则创建(ifstream默认的打开方式)
ios::out = 0x02, //供写,文件不存在则创建,若文件已存在则清空原内容(ofstream默认的打开方式)
ios::ate = 0x04, //文件打开时,指针在文件最后。可改变指针的位置,常和in、out联合使用
ios::app = 0x08, //供写,文件不存在则创建,若文件已存在则在绝伍原文件内容后写入新的内容,指针位置总在最后
ios::trunc = 0x10, //在读写前先将文件长度截断为0(默认)
ios::nocreate = 0x20, //文件不存在时产生错误,常和in或app联合使用
ios::noreplace = 0x40, //文件存在时产生错误,常和out联合使用
ios::binary = 0x80 //二进制格式文件
文件保护方式选择项:
filebuf::openprot; //默认的兼容共享方式
filebuf::sh_none; /并信或/独占,不共享
filebuf::sh_read; //读共享
filebuf::sh_write; //写共享
打开文件的方法
调用构造函数时指定文件名和打开模式
ifstream f("d:\\12.txt",ios::nocreate); //默认以 ios::in 的方式打开文件,文件不存在时操作失败
ofstream f("d:\\12.txt"); //默认以 ios::out的方式打开文件
fstream f("d:\\12.dat",ios::in|ios::out|ios::binary); //以读写方式打开二进制文件
使用Open成员函数
fstream f;
f.open("d:\\12.txt",ios::out); //利用同一对象对多个文件进行操作时要用到open函数
检查是否成功打开
成功:
if(f){...} //对ifstream、ofstream对象可用,fstream对象不可用。
if(f.good()){...}
失败:
if(!f){...} // !运算符已经重载
if(f.fail()){...}
读写操作
使用<<,>>运算符
只能进行文本文件的读写操作,用于二进制文件可能会产生错误。
使用函数成员 get、put、read、write等
经常和read配合使用的函数是gcount(),用来获得实际读取的字节数。
读写二进制文件注意事项
打开方式中必须指定ios::binary,否则读写会出错
用read\write进行读写操作,而不能使用插入、提取运算符进行操作,否则会出错。
使用eof()函数检测文件是否读结束,使用gcount()获得实际读取的字节数
关闭文件
使用成员函数close,如:
f.close();
利用析构函数
对象生命期结束时会检查文件是否关闭,对没有关闭的文件进行关闭操作。
随机读写文件
通过移动文件读写指针,可在文件指定位置进行读写。
seekg(绝对位置); //绝对移动, //输入流操作
seekg(相对位置,参照位置); //相对操作
tellg(); //返回当前指针位置
seekp(绝对位置); //绝对移动, //输出流操作
seekp(相对位置,参照位置); //相对操作
tellp(); //返回当前指针位置
参照位置:
ios::beg = 0 //相对于文件头
ios::cur = 1 //相对于当前位置
ios::end = 2 //相对于文件尾
读写文本文件的示例
//为能够正确读出写入文件的各数据,各数据间最好要有分隔
#include
void main()
{
fstream f("d:\\try.txt",ios::out);
f<<1234<<' '<<3.14<<'A'<<"How are you"; //写入数据
f.close();
f.open("d:\\try.txt",ios::in);
int i;
double d;
char c;
char s[20];
f>>i>>d>>c; //读取数据
f.getline(s,20);
cout< cout< cout< cout< f.close();
}
运行结果:
1234
3.14
A
How are you
Press any key to continue
显示文本文件的内容
//使用get()一次读一个字符--------------------------------方案一
#include
void main()
{
ifstream fin("d:\\简介.txt",ios::nocreate);
if(!fin){
cout<<"File open error!\n";
return;
}
char c;
while((c=fin.get())!=EOF)cout< fin.close();
}
//使用get(char *,int n,char delim='\n')一次读多个字符----方案二
//巧妙利用文本文件中不会有字符'\0'的特点进行读取
#include
void main()
{
ifstream fin("d:\\简介.txt",ios::nocreate);
if(!fin){
cout<<"File open error!\n";
return;
}
char c[80];
while(fin.get(c,80,'\0')!=NULL)cout< fin.close();
}
//使用read(char *,int n)读文件---------------------------方案三
#include
void main()
{
ifstream fin("d:\\简介.txt",ios::nocreate);
if(!fin){
cout<<"File open error!\n";
return;
}
char c[80];
while(!fin.eof()) //判断文件是否读结束
{
fin.read(c,80);
cout.write(c,fin.gcount());
}
fin.close();
}
拷贝文件
//二进制文件操作示例
#include
void main()
{
ifstream fin("C:\\1.exe",ios::nocreate|ios::binary);
if(!fin){
cout<<"File open error!\n";
return;
}
ofstream fout("C:\\2.exe",ios::binary);
char c[1024];
while(!fin.eof())
{
fin.read(c,1024);
fout.write(c,fin.gcount());
}
fin.close();
fout.close();
cout<<"Copy over!\n";
}

回答(3):

现写个简单程序,能实现你所列要求:
#include
#include

using namespace std;
void main()
{
FILE *fp;
int a,b,c;
int j;
char fname[20];
j = 0;
while (3 != j)
{
cout <<旦雀 "请选择操作类型:\n"
<<"建立文件,请输入 1\n"
<<"读取文件,请输入 2\n"
<<"退出,请输入 3\n";
cin >> j;
if (1 == j)
{
cout << "你选择的操作是建立文件,请输入文件名:\n";
cin >> fname;
if ((fp=fopen(fname,"wt")) == NULL)
cout << "对不起,该文件建立失败!\n";
else
{
cout << "请输入文件信息搭慎:\n";
cin >> a >> b >> c;
fprintf(fp,"%d\n%d\n%d\n",a,b,c);
fclose(fp);
}
}
else if (2 == j)
{
cout << "你选的操作是读取文件,请输入文件名:\n";
cin >> fname;
if ((fp=fopen(fname,"rt")) == NULL)
cout << "对不起,该文件打开失败!\n";
else
{
cout << "文件信息是:\n";
fscanf(fp,"%d%d%d",&a,&b,&c);
cout << "a=" << a << "模枝早,b=" << b << ",c=" << c << "\n";
fclose(fp);
}
}
}
}

回答(4):

fprintf(fp,"烂庆拆%d\饥枣r\n%d\r\n%d\差腊r\n",a,b,c);

fscanf(fp,"%d %d %d",&a,&b,&c);