MFC中如何将信息输出到文本框
如何将C++中运行结果,在MFC中讲此结果输出到文本框呢?本人没学过MFC。。请给出详细一点的步骤。。谢谢了。。。下面就是我的C++代码···#include<fstre...
如何将C++中运行结果,在MFC中讲此结果输出到文本框呢?本人没学过MFC。。请给出详细一点的步骤。。谢谢了。。。下面就是我的C++代码···
#include <fstream.h>
const char *file="file.txt";
int main()
{
ifstream input_file;
int loop;
char ch='A';
input_file.open(file,ios::binary);
if(!input_file){
cout<<"Can not open the file!"<<endl;
return 1;
}
for(loop=0;loop<500&&input_file.get(ch);loop++)
{
input_file.tellg();
cout<<"文件名:";
cout<<ch;
while(input_file.get(ch)&&ch!='*') cout<<ch;
cout<<"大小:";
while(input_file.get(ch)&&ch!='*') cout<<ch;
cout<<"修改时间:";
while(input_file.get(ch)&&ch!='*') cout<<ch;
cout<<"属性:";
while(input_file.get(ch)&&ch!='*') cout<<ch;
input_file.ignore(1,'*');
cout<<endl;
}
input_file.close();
return 0;
} 展开
#include <fstream.h>
const char *file="file.txt";
int main()
{
ifstream input_file;
int loop;
char ch='A';
input_file.open(file,ios::binary);
if(!input_file){
cout<<"Can not open the file!"<<endl;
return 1;
}
for(loop=0;loop<500&&input_file.get(ch);loop++)
{
input_file.tellg();
cout<<"文件名:";
cout<<ch;
while(input_file.get(ch)&&ch!='*') cout<<ch;
cout<<"大小:";
while(input_file.get(ch)&&ch!='*') cout<<ch;
cout<<"修改时间:";
while(input_file.get(ch)&&ch!='*') cout<<ch;
cout<<"属性:";
while(input_file.get(ch)&&ch!='*') cout<<ch;
input_file.ignore(1,'*');
cout<<endl;
}
input_file.close();
return 0;
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询