VC++.net中导出list列表中的数据到TXT文档中

本文介绍了一种使用VC++将List控件中的数据导出到TXT文件的方法。通过设置按钮事件,利用CFileDialog选择文件,然后遍历List控件的每一项,并将其写入TXT文件中。

导出的方法,先设置一个按钮,双击按钮,再按钮时件中添加如下代码

注意项目属性的字符集要设置“未设置”

 

CString strFileName;
CFileDialog m_ldFile(FALSE);

m_ldFile.m_ofn.lpstrFilter = "*.TXT";//这里注意注意:项目属性-配置属性-常规中的字符集要设置“未设置”(以前是unicode)
m_ldFile.m_ofn.lpstrDefExt = "TXT";

if (m_ldFile.DoModal() == IDOK)
{
strFileName = m_ldFile.GetPathName(); //设置保存路径
}

//创建文件
char* pszFileName = strFileName.GetBuffer(strFileName.GetLength());
CStdioFile myFile;
CFileException fileException;

if ( !myFile.Open( pszFileName, CFile::modeCreate |
CFile::modeWrite ), &fileException )
{
TRACE( "Can't open file %s, error = %u\n",
pszFileName, fileException.m_cause );
}

//文件中写入内容
int iColSum = 4; //List中的栏数
int iCount = List.GetItemCount();//这里的LIST是定义的list列表的变量

for (int iItem = 0; iItem < iCount; iItem++)
for (int iCol = 0; iCol < iColSum; iCol++)
{
CString strTemp = List.GetItemText( iItem, iCol);

if (iCol ==0)
lstrcat(strTemp.GetBuffer(strTemp.GetLength()), "\t");
else
lstrcat(strTemp.GetBuffer(strTemp.GetLength()), "\n");

myFile.WriteString(strTemp.GetBuffer(strTemp.GetLength()));

}


if (MessageBox("已保存,要查看吗", "完成", MB_YESNO) == IDYES)
{
ShellExecute(NULL,
"open",
pszFileName,
NULL,
NULL,
SW_SHOWNORMAL);
}

//关闭文件
myFile.Close();

转载于:https://www.cnblogs.com/yanmingup/archive/2012/12/07/VCnet.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值