Reading INI files-Delphi

Source: Internet
Author: User

The program often needs to read some user-defined values. How can this process be completed?

B/S programs generally use XML files, while C/S programs use INI files.


The previous article "C # migration of callxbflibrary-2 (call of unmanaged DLL)" is an example of C # Reading ini.

This article describes how to use Delphi to complete this process.

First, reference the unit.

 
Uses Windows, sysutils, classes, DB, ADODB, strutils, forms, inifiles;

"Inifiles" is the unit to be referenced.


Then, define the class variable.

 
VaR xbfini: Tinifile;

Finally, read/write data

1. initialize class variables

 
Xbfini: = Tinifile. Create (currentdir1 + 'cdpconfig. ini ');

Currentdir1 is the current directory variable.

 
Currentdir1: = extractfilepath (paramstr (0 ));

2. read/write data

Here is an example of reading.

 
Xbftemp: = xbfini. readstring ('filepath', '3', 'demo1. xbf ');

Readstring is the string method used to read INI files.

The parameters are: bar name, key name, default value



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.