给出部分书的名称:
精通Visual C++图像编程 MFC中文帮助 MFC程序员的WTL指南
VC6从入门到精通-开发者眼中的VC VC6从入门到精通-附录 MS VC++6.0程序员指南
VC6从入门到精通-基础篇 VC6从入门到精通-VC与INTERNET Visual C++ 使用指南
Visual C++知识库 Visual C++ MFC入门教程 Visual C++ 6 参考大全
跟我学 VISUAL C++ 6.0 Visual C++ 6.0语言参考手册 Visual Lisp开发人员手册
Visual C++ 从入门到精通 Visual J++ 6.0 WFC 类库手册 Visual InterDev 从入门到精通
Visual C++ 6.0用户开发手册 VC编程指南 VC++6.0 类库参考手册
VC++database编程大全 VC6.0 运行库参考手册 Visual C++6.0运行库参考手册
VC++6.0模板库手册 VC++面向对象入门 VC新手学堂
Visual C++ 6.0预处理器参考手册 VC5.0开发人员参考手册 VC6中文版程序员开发指南
Visual J++ 6.0 WFC类库参考手册一 VC6 模板库参考手册 VC++编程指南
Visual J++ 6.0 WFC类库参考手册二 VC6.0 MFC类库参考手册 VC6从入门到精通-VC与数据库管理
MS VC++ 6.0 MFC类库参考手册 一 MS VC++ 6.0 MFC类库参考手册 二 走进Visual C++
实例篇
Visual C++ 实践与提高-图形图像编程篇 Visual C++ 数字图像处理 VC-MFC编程实例
Visual C++实践与提高_环境剖析IDE篇 Visual C++程序设计:基础与实例分析 Visual C++ 6.0实例
Visual C++课程设计案例精编 Visual C++ 6.0开发与实例 VISUAL C++扩展编程实例
Visual C++6.0高级编程技巧与实例 VC++扩展编程实例 Visual C++编程技巧与范例
战胜Visual C++必做练习50题 Visual C++6.0编程与实例解析 VC-MFC扩展编程实例
MFC资源大全 精通Visual C++ 6.0 Visual C++程序模块集锦
Visual C++_Turbo C串口通信编程 Visual C++ 6.0应用编程150例 Visual C++ 6.0实例教程电子教案
教程篇
MFC Windows程序设计 Visual C++网络通信协议分析 VC6.0数据库编程
Visual C++ 学习教程 Visual_C++_新起点—6.0实用教程 Visual C++ 6-24学时学习教程
Visual C++ 6.0 21天自学教程 VC++网络教程 Visual C++ MFC 简明教程
VC 数据库编程三部教学 Visual C++ 6.0 数据库编程大全 VC新手学堂简明教程
Visual C++ 6.0 开发宝典 Visual C++ 6.0 教程 Visual C++ 6.0 高级编程
VC++6.0培训教程 Visual J++ 6.0 即学即用 Visual C++与面向对象程序设计教程
Visual C++6.0高级开发教程 Visual C++.NET 宝典 Visual C++5.0 程序设计
技术与应用
VC++6.0 用户界面制作技术与应用实例 深入浅出WINDOWS MFC程序设计 Visual C++ 角色扮演游戏程序
Visual C++6.0程序设计提高篇 VC++编程资料 VC++ 函数经典
VC++与Matlab混合编程的快速实现 Visual C++ 5.0易学活用 VISUAL C++ 设计WIN32应用程序
Visual C++入门与应用 Visual C++6.0开发宝典 Visual C++6.0技术内幕
VC++6编程方法 深入VC编程内幕 VC编程经验总结
用VC++编写USB接口通信程序 用VC开发CGI 疯狂VC技巧集
VC6开发宝典 Visual C++经典 Visual C++ 6 轻松进阶
VC编程常用捷径 MFC技术内幕 VC深入编程
代码懒得写 给你个大概的思路在MFC下读取和写入文本可以用CStudioFile类对象,比用C读简单,它的参考资料如下:
******************************************************************
CStdioFile类成员
数据成员:
m_pStream 包含了一个指向打开文件的指针
构造:
CStdioFile 从一个路径或文件指针构造一个CStdioFile对象
文本读/写 :
ReadString 读取一行文本
WriteString 写一行文本
一个CStdioFile对象代表一个用运行时函数fopen打开的C运行时流式文件。
流式文件是被缓冲的,而且可以以文本方式(缺省)或二进制方式打开。
文本方式提供对硬回车—换行符对的特殊处理。当你将一个换行符(0x0A)写入一个文本方式的CStdioFile对象时,字节对(0x0A,0x0D)被发送给该文件。当你读一个文件时,字节对(0x0A,0x0D)被翻译为一个字节(0x0A)。
当你读一个文件时,字节对(0x0A,0x0D)被翻译为一个字节(0x0A)。
CStdioFile不支持Duplicate,LockRange,和UnlockRange这几个CFile函数。如果在CStdioFile中调用了这几个函数,将会出现CNoSupported异常。
有关使用CStdioFile的更多信息,参见“Visual C++程序员指南”中的文章“MFC文件”,和“Microsoft Visual C++库参考”中的“Microsoft Visual C++ 6.0运行库参考”。
#include <afx.h>
**********************************************************************
文本文件的格式类似:1(回车) 2(回车)....
也就是一个数据一行
因为CStudioFile类读取文件时是一行一行读取的
将一行的内容读取到CString类对象中
然后再用CString函数的Format函数,将数字字符串格式化成整型数据并附给整型变量,这样就可以了
对数据处理后再写到源文件中时过程恰好相反(写数据时别忘了写回车符,"\r\n"或者"\n",具体哪个有用我忘了) 我就不多说了
资料内容所涉及方面:C/C++/VC++的基础教程、通讯、协议分析、游戏开发、图像处理、管理系统、多媒体、加密与解密、控件ACTIVEX、开发CGI、标准程式库、技术内幕、Windows核心编程、对象模型、人工智能、软件工程、数据结构、WindowsAPI、Visual Basic 、Directx、网络开发、数据库开发、ADO、神经网络、DLL和内存管理、OLE&DDE、 *** 作系统、端口、数值算法、等等技术或相关开发资料。
《C语言专区》
C语言实例教程 1.72
http://download.chinaitlab.com/soft/8658.htm
经典编程900例(C语言)
http://download.chinaitlab.com/soft/7972.htm
C语言实例教程
http://download.chinaitlab.com/soft/6530.htm
C语言图象处理方法
http://download.chinaitlab.com/soft/6514.htm
C语言编程实例
http://download.chinaitlab.com/soft/6103.htm
C语言书打包下载
http://download.chinaitlab.com/soft/6041.htm
集成学习环境(C语言)
http://download.chinaitlab.com/soft/5764.htm
C语言圣经 1.0
http://download.chinaitlab.com/soft/5745.htm
用C实现面向对象
http://download.chinaitlab.com/soft/7566.htm
C语言高级实用编程技巧
http://download.chinaitlab.com/soft/4593.htm
C语言最新编程技巧200例
http://download.chinaitlab.com/soft/4594.htm
C语言速成3.0
http://download.chinaitlab.com/soft/4723.htm
C语言编程技巧程序集
http://download.chinaitlab.com/soft/4561.htm
C语言速成多媒件课件 3.0
http://download.chinaitlab.com/soft/3238.htm
C语言多媒体教程
http://download.chinaitlab.com/soft/2893.htm
C程序设计培训
http://download.chinaitlab.com/soft/6340.htm
实用C语言详解
http://download.chinaitlab.com/soft/3274.htm
C语言程序设计及应用实例
http://download.chinaitlab.com/soft/3241.htm
C语言程序宝典
http://download.chinaitlab.com/soft/3071.htm
C语言教程
http://download.chinaitlab.com/soft/3027.htm
《C语言编程宝典》
http://download.chinaitlab.com/soft/1849.htm
C语言常用函数手册
http://download.chinaitlab.com/soft/1818.htm
C语言学习系统
http://download.chinaitlab.com/soft/1816.htm
C语言技术文章
http://download.chinaitlab.com/soft/1817.htm
C常用算法程序集
http://download.chinaitlab.com/soft/6225.htm
微软C编程精粹
http://download.chinaitlab.com/soft/6166.htm
《C++语言专区》
Inside C++ Object Model
http://download.chinaitlab.com/soft/7851.htm
C++ 入门基础教程
http://download.chinaitlab.com/soft/7617.htm
C++和面向对象的数值计算
http://download.chinaitlab.com/soft/6987.htm
经典C++语言教程
http://download.chinaitlab.com/soft/7399.htm
C++编程实例详解
http://download.chinaitlab.com/soft/6988.htm
C_C++深层探索
http://download.chinaitlab.com/soft/6989.htm
C_C++程序设计
http://download.chinaitlab.com/soft/6990.htm
C++输入输出流及本地化
http://download.chinaitlab.com/soft/6986.htm
经典 C++语言教程
http://download.chinaitlab.com/soft/6978.htm
C++ Primer 3rd Edition
http://download.chinaitlab.com/soft/6823.htm
C++_Primer_Plus_4th
http://download.chinaitlab.com/soft/6819.htm
C++应用编程200例
http://download.chinaitlab.com/soft/6820.htm
C++面向对象高效编程
http://download.chinaitlab.com/soft/6610.htm
Borland C++ 3.0自学培训教程
http://download.chinaitlab.com/soft/6274.htm
经典 C++ 语言教程
http://download.chinaitlab.com/soft/6600.htm
C++Builder自学培训教程
http://download.chinaitlab.com/soft/6317.htm
Borland C++ Builder高级编程
http://download.chinaitlab.com/soft/7927.htm
高质量C_C++编程指南
http://download.chinaitlab.com/soft/7916.htm
C++程序设计培训教程
http://download.chinaitlab.com/soft/6339.htm
C++程序设计教程
http://download.chinaitlab.com/soft/6338.htm
C++Builder核心program
http://download.chinaitlab.com/soft/6318.htm
C++Builder基础进阶
http://download.chinaitlab.com/soft/6316.htm
C++Builder30开发指南
创世纪的C++ Builder教程
http://download.chinaitlab.com/soft/6175.htm
http://download.chinaitlab.com/soft/6311.htm
21天学会C++
http://download.chinaitlab.com/soft/6307.htm
C++程序调试实用手册
http://download.chinaitlab.com/soft/6131.htm
C++Builder学习大全中文版
http://download.chinaitlab.com/soft/6077.htm
C&C++深层探索
http://download.chinaitlab.com/soft/6036.htm
C++ 设计新思维
http://download.chinaitlab.com/soft/6037.htm
经典C++图书下载 1
http://download.chinaitlab.com/soft/6067.htm
经典C++图书下载 2
http://download.chinaitlab.com/soft/6068.htm
C++ 常见问题问与答
http://download.chinaitlab.com/soft/6005.htm
C++ 和面向对象的数值计算
http://download.chinaitlab.com/soft/6006.htm
C++ 面向对象多线程编程
http://download.chinaitlab.com/soft/6007.htm
嵌入式系统中C的开发
http://download.chinaitlab.com/soft/6027.htm
用 C++ 开发 Web 商用程序
http://download.chinaitlab.com/soft/6033.htm
C++名家对话
http://download.chinaitlab.com/soft/5981.htm
C++实践之路
http://download.chinaitlab.com/soft/6040.htm
C++bulider参考手册 1.1
http://download.chinaitlab.com/soft/6574.htm
用C++开发Web商用程序
http://download.chinaitlab.com/soft/6975.htm
C++代码设计与重用
http://download.chinaitlab.com/soft/5980.htm
C++程序设计讲义
http://download.chinaitlab.com/soft/5742.htm
《C#语言专区》
C# Primer Plus中文版
http://download.chinaitlab.com/soft/7990.htm
C# 开发编码规范
http://download.chinaitlab.com/soft/7991.htm
C#深入浅出全接触
http://download.chinaitlab.com/soft/6992.htm
C# COM+ Programming
http://download.chinaitlab.com/soft/7855.htm
Design Pattern In C#
http://download.chinaitlab.com/soft/7852.htm
C#实现的俄罗斯方块程序
http://download.chinaitlab.com/soft/7805.htm
C#高级编程第2版
http://download.chinaitlab.com/soft/6883.htm
C#百例
http://download.chinaitlab.com/soft/7638.htm
C#.NET 开发者手册
http://download.chinaitlab.com/soft/7620.htm
CSharp程序员参考手册
http://download.chinaitlab.com/soft/7618.htm
C#程序100实例
http://download.chinaitlab.com/soft/7619.htm
新一代C#与ASP.NET权威指南
http://download.chinaitlab.com/soft/4115.htm
C#与.NET技术平台实演练
http://download.chinaitlab.com/soft/4044.htm
C#程序员参考手册
http://download.chinaitlab.com/soft/6991.htm
C# Network Programming
http://download.chinaitlab.com/soft/7484.htm
C#入门经典
http://download.chinaitlab.com/soft/6570.htm
ASP.NET C#教程
http://download.chinaitlab.com/soft/6640.htm
C#.NET中文版Web服务开发基础
http://download.chinaitlab.com/soft/3691.htm
精通C#与ASP.NET程序设计
http://download.chinaitlab.com/soft/6578.htm
C#文档中文版(微软)
http://download.chinaitlab.com/soft/1839.htm
C#教程
http://download.chinaitlab.com/soft/3070.htm
C#高级编程
http://download.chinaitlab.com/soft/1841.htm
C#进阶手册
http://download.chinaitlab.com/soft/1596.htm
MS Press Inside C#
http://download.chinaitlab.com/soft/4306.htm
C#实例程序
http://download.chinaitlab.com/soft/5586.htm
Windows应用高级编程-C#编程篇
http://download.chinaitlab.com/soft/4992.htm
C#与.NET技术平台实战演练
http://download.chinaitlab.com/soft/4813.htm
C#语言参考
http://download.chinaitlab.com/soft/4814.htm
C#.NET编程培训教程
http://download.chinaitlab.com/soft/6331.htm
C# WINDOWS程序设计
http://download.chinaitlab.com/soft/6097.htm
C#系列教程
http://download.chinaitlab.com/soft/6099.htm
C#英文手册
http://download.chinaitlab.com/soft/5929.htm
精通C#简体中文版
http://download.chinaitlab.com/soft/6552.htm
C# 参考手册
http://download.chinaitlab.com/soft/6374.htm
C#语言规范
http://download.chinaitlab.com/soft/6375.htm
C# 程序员介绍
http://download.chinaitlab.com/soft/6356.htm
C# 程序员参考手册
http://download.chinaitlab.com/soft/6388.htm
C#--微软.NET的第一语言
http://download.chinaitlab.com/soft/6376.htm
C#基本书写规范技术文档
http://download.chinaitlab.com/soft/5660.htm
《VC++语言专区》
VC++与Matlab混合编程的快速实现
http://download.chinaitlab.com/soft/7848.htm
VC++编程指南
http://download.chinaitlab.com/soft/7475.htm
VC++6编程方法
http://download.chinaitlab.com/soft/6352.htm
VC++6.0 类库参考手册
http://download.chinaitlab.com/soft/6345.htm
VC++database编程大全
http://download.chinaitlab.com/soft/6348.htm
VC++6.0培训教程
http://download.chinaitlab.com/soft/6351.htm
VC++编程技巧与范例
http://download.chinaitlab.com/soft/6349.htm
VC++网络教程
http://download.chinaitlab.com/soft/6350.htm
VC++面向对象入门
http://download.chinaitlab.com/soft/6346.htm
VC++扩展编程实例
http://download.chinaitlab.com/soft/6159.htm
用VC++编写USB接口通信程序
http://download.chinaitlab.com/soft/6073.htm
VC++6.0 语言参考手册
http://download.chinaitlab.com/soft/5956.htm
VC++6.0内幕
http://download.chinaitlab.com/soft/5959.htm
VC++6.0 运行库参考手册
http://download.chinaitlab.com/soft/5957.htm
VC++5.0易学活用
http://download.chinaitlab.com/soft/5954.htm
VC++6.0 用户界面制作技术与应用实例
http://download.chinaitlab.com/soft/5955.htm
Visual C++6.0从入门到精通
http://download.chinaitlab.com/soft/8645.htm
Visual C++ 6.0 教程
http://download.chinaitlab.com/soft/7974.htm
Visual C++ 6.0 开发宝典
http://download.chinaitlab.com/soft/7973.htm
Visual C++ 6.0实例
http://download.chinaitlab.com/soft/7970.htm
VISUAL C++扩展编程实例
http://download.chinaitlab.com/soft/7606.htm
Visual C++6.0高级编程技巧与实例
http://download.chinaitlab.com/soft/7607.htm
Visual C++ 6.0用户开发手册
http://download.chinaitlab.com/soft/7593.htm
疯狂VC技巧集
http://download.chinaitlab.com/soft/5688.htm
VC模板库手册
http://download.chinaitlab.com/soft/5960.htm
用VC开发Activex
http://download.chinaitlab.com/soft/5969.htm
用VC开发CGI
http://download.chinaitlab.com/soft/5970.htm
用VC开发win应用
http://download.chinaitlab.com/soft/5971.htm
VC通讯
http://download.chinaitlab.com/soft/5964.htm
VC入门教程
http://download.chinaitlab.com/soft/5961.htm
VC实例
http://download.chinaitlab.com/soft/5962.htm
VC使用大全
http://download.chinaitlab.com/soft/5963.htm
VC5.0开发人员参考手册
http://download.chinaitlab.com/soft/5952.htm
跟我学 VISUAL C++ 6.0
http://download.chinaitlab.com/soft/7592.htm
精通Visual C++图像编程
http://download.chinaitlab.com/soft/7590.htm
Visual C++.NET应用编程150例
http://download.chinaitlab.com/soft/7396.htm
Visual C++ 6.0 高级编程
http://download.chinaitlab.com/soft/6802.htm
Visual C++ 6—24学时学习教程
http://download.chinaitlab.com/soft/6582.htm
Visual C++高级编程技巧与实例
http://download.chinaitlab.com/soft/6554.htm
Visual C++ 设计WIN32应用程序
http://download.chinaitlab.com/soft/6555.htm
Visual C++ 6.0 编程实例与技巧
http://download.chinaitlab.com/soft/6449.htm
Visual C++ 6.0 程序员指南
http://download.chinaitlab.com/soft/6275.htm
Visual C++ 6-24学时学习教程
http://download.chinaitlab.com/soft/6223.htm
Visual C++ - Visual C++
http://download.chinaitlab.com/soft/6063.htm
Visual C++ .net多媒体教学
http://download.chinaitlab.com/soft/1069.htm
VC编程经验总结
http://download.chinaitlab.com/soft/6160.htm
VC新手学堂
http://download.chinaitlab.com/soft/6090.htm
VC6.0 MFC类库参考手册
http://download.chinaitlab.com/soft/6357.htm
VC6.0 运行库参考手册
http://download.chinaitlab.com/soft/6355.htm
VC-MFC编程实例
http://download.chinaitlab.com/soft/6354.htm
VC-MFC扩展编程实例
http://download.chinaitlab.com/soft/6353.htm
深入VC编程内幕
http://download.chinaitlab.com/soft/6473.htm
Visual C.NET中文版Web服务开发基础
http://download.chinaitlab.com/soft/6976.htm
然后还有个C语言百度吧:
http://post.baidu.com/f?kz=5728013
参考资料:http://www.programfan.com/blog/article.asp?id=6925
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)