展开全部
CString CUBDlg::GetTxtfile(CString txtdir) //参数为文件路径
{
CStdioFile file;
if(file.Open(txtdir,CFile::modeNoTruncate | CFile::modeRead | CFile::typeText))
{
CString str;
CString textcontent="";
while(file.ReadString(str))
{
textcontent=textcontent+"\n"+str;
}
file.Close();
return textcontent; //成功返回文件内容
}
else
{
return ""; //失则返回空字串
}
}
如果m_list中列表框
m_list.InsertItem
m_list.SetItemText
采用这两个函数插入和设置行
{
CStdioFile file;
if(file.Open(txtdir,CFile::modeNoTruncate | CFile::modeRead | CFile::typeText))
{
CString str;
CString textcontent="";
while(file.ReadString(str))
{
textcontent=textcontent+"\n"+str;
}
file.Close();
return textcontent; //成功返回文件内容
}
else
{
return ""; //失则返回空字串
}
}
如果m_list中列表框
m_list.InsertItem
m_list.SetItemText
采用这两个函数插入和设置行
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询