MFC中如何读取CSV文件
1个回答
展开全部
仅供参考:
void CCSVTestDlg::OnBnClickedButton2()
{
// TODO: Add your control notification handler code here
CListBox* pListBox = (CListBox*)GetDlgItem(IDC_LIST1);
pListBox->ResetContent();
CStdioFile file;
CString filePath = _T("D:\\test.csv");
CString str = _T("");
if (file.Open(filePath,CFile::modeRead))
{
for (int i=0; i<10; i++)
{
file.ReadString(str);
pListBox->AddString(str);
}
//::AfxMessageBox(str);
file.Close();
file.Remove(filePath);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询