如何在txt文件中中显示ansi编码符号

可以通过 alt + 小键盘上的数字键 在txt文本文件中显示ascii码的所有字符.

ascii 码表 可以参考 如下地址:
  http://blog.chinaunix.net/article.php?articleId=8427&blogId=768


  在txt文件中可以通过 alt+41467 得到←,但是在 outlook 和 word 中不行.

 可以在如下网站获取到ascii码的速查工具:

http://www.pcwx.com.cn/Soft/Class15/Class19/200508/20050819093908.html

说明:

   (1)对于如何在笔记本上输出如上内容,目前还不是很清楚。

   (2)本文中提到的工具资料,请大家使用时遵守资料提供者的约定。

可以按照以下步骤来实现: 1. 使用Unicode版本的MFC,确保项目的字符集设置为Unicode。 2. 使用CStdioFile类读取UTF-8编码txt文件,可以使用Open函数打开文件,然后使用ReadString函数逐行读取文件内容。 3. 将读取的内容转换为Unicode编码,可以使用MultiByteToWideChar函数将UTF-8编码转换为Unicode编码。 4. 使用CString类的Split函数将每行内容分割为姓名、年龄、学号、成绩四个字段。 5. 将分割后的字段插入到ListCtrl控件中,可以使用InsertItem和SetItemText函数分别插入行和列。 具体实现参考代码如下: ```c++ // 打开文件 CStdioFile file; if (file.Open(_T("filename.txt"), CFile::modeRead | CFile::typeText)) { CString line; while (file.ReadString(line)) { // 将UTF-8编码转换为Unicode编码 int len = ::MultiByteToWideChar(CP_UTF8, 0, line, -1, NULL, 0); CString unicodeStr; ::MultiByteToWideChar(CP_UTF8, 0, line, -1, unicodeStr.GetBuffer(len), len); unicodeStr.ReleaseBuffer(); // 分割字段 CStringArray fields; int count = unicodeStr.Split(_T("\t"), fields); if (count >= 4) { // 插入到ListCtrl控件中 int index = listCtrl.InsertItem(listCtrl.GetItemCount(), fields[0]); listCtrl.SetItemText(index, 1, fields[1]); listCtrl.SetItemText(index, 2, fields[2]); listCtrl.SetItemText(index, 3, fields[3]); } } file.Close(); } ``` 注意:这里假设txt文件中每行内容都以制表符分割为四个字段,如果实际情况不是这样,需要根据实际情况进行修改。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值