- 29
- 0
- 约9.45千字
- 约 11页
- 2017-08-16 发布于河南
- 举报
ini文件格式读取(INI file format read)
ini文件格式读取(INI file format read)
Summary
Often used in the procedure to set up a small amount of data or other disk, so that the program can be used when the next execution, for example, to save the program execution when the window location, size, some users of the data set and so on, when programming in Dos, a file we own, by their own the data is written to the file, and then when the next execution read out using. Of course you can do this in Win32 programming, but Windows has provided us with two convenient ways to save a small amount of data using a registry or INI file (Profile). This article first introduces the use of.Ini files.
The INI file is a text file, and the middle data format is generally:
[Section1 Name]
KeyName1=value1
KeyName2=value2
...
[Section2 Name]
KeyName1=value1
KeyName2=value2
The INI file can be divided into several Section, each Section name [] enclosed in a Section, can have a lot of Key, every Key can have a value and a line format is Key=value, the Win32 INI files on the operation of the API, a part of the win.ini. The part of a custom INI file operations. Win.in and system.ini are two very important initialization files for Windows, and Windows records the choices made by users and various changes of system information in these two files. System.ini describes the current state of the system hardware, and the Win.ini file contains the current configuration of the Windows system running environment. Because of the importance and common use of Win.ini files, there is a API in Win32 that specializes in Win.ini operations. They are:
GetProfileInt - gets an integer value of key from a Section in a Win.ini file, and its prototype is:
GetProfileInt (
LPCTSTR lpAppName / / Section name contains the address to a string
LPCTSTR lpKeyName / / Key name contains the address to a string
INT nDefault / / Key value if not found, how much is it returns the default value
);
If the Key value is not found, the return value is the default nDefault the spe
您可能关注的文档
- const用法(Const usage).doc
- cookie用法整理(Cookie usage arrangement).doc
- cool edit 使用指南(Cool Edit使用指南).doc
- copy of gsm系统消息的介绍 x(Copy of GSM system message introduction x).doc
- cool 英语(酷英语).doc
- copy详细用法大全(Copy detailed usage Daquan).doc
- could you please clean your room 说课稿(请你打扫你的房间说课稿).doc
- co(有限公司).doc
- cpu与gpu的作用和位置分析(Role and position analysis of CPU and GPU).doc
- cpa考试中,如何一次性通过6门档(CPA test, how to pass through 6 files at one time).doc
原创力文档

文档评论(0)