C++ MFC中如何TXT格式文件在列表框中显示出来

2024年11月22日 13:16
有4个网友回答
网友(1):

1.先把列表框里面的内容保存到变量temp中,把下列代码加入到按钮的响应函数即可。

CFile outf = CFile("out.txt");
outf.out(temp);
outf.flush();

另外C++里面的文件操作,可以原封不动地搬到mfc中,如果你在C++语言里面会,也可以用C++的库函数实现文件操作。

2.例程:
CString strFile = "c:\\test.txt";
CFile f;
f.Open(strFile, CFile::modeRead);
char* str = new char[f.GetLength()];
f.Read(str, f.GetLength());
f.Close();

GetDlgItem(IDC_EDIT_VALUE)->SetWindowText(str);

网友(2):

把TXT文件文件读出病赋予一个CString 变量,在利用列表框的插入项函数插入即可。

网友(3):

你是说显示txt的内容??还是···txt文件显示出来????
第一种:
先读取txt,再赋值就可以了
第二种:
遍历目录下txt格式文件,再赋值就可以了

网友(4):

CString strFile = "c:\\test.txt";
CFile f;
f.Open(strFile, CFile::modeRead);
char* str = new char[f.GetLength()];
f.Read(str, f.GetLength());
f.Close();

GetDlgItem(IDC_EDIT_VALUE)->SetWindowText(str);