日期:2008-07-13  浏览次数:20488 次

Upgrade Your INI Files to XML with .NET (cont.)



The XML INI File Structure

The IniFileReader project sample code that accompanies this article reads standard INI files or XML-formatted INI files (see Table 1 for a complete list of methods and properties). The IniFileReader class constructor requires a file name. The class first tries to open the specified file as an XML file, using the XMLDocument.Load method. If that fails, the class assumes the file is in the INI format. It then creates a very simple default XML string and loads that, using the XMLDocument.LoadXML method, after which it opens the file in text mode and parses the lines of the file adding elements for the sections, items, and comments in the order they appear (see Listing 1). As an example, the sample INI file shown earlier looks like this after the IniFileReader finishes loading it.



   <?XML version="1.0" encoding="UTF-8"?>
   <sections>
     <comment> Company employees</comment>
     <section name="employee1">
       <item key="name" value="Bob Johnson" />
       <item key="department" value="Accounting" />
     </section>
     <section name="employee2">
       <item key="name" value="Susan Fielding" />
       <item key="department" value="Sales" />
     </section>
   </sections>

Getting the INI file contents into this simple XML structure makes it easy to mimic and extend the actions that you can perform with a standard INI file—and makes them easier to remember. The root element can contain any number of child <comment> or <section> elements, each of which can contain any number of <item> or <comment> elements.

One question you may have: Why doesn't the project use the standard API functions through DllImport as discussed in Use COM Interop to Read and Write to INI Files with .NET? The answer is that the standard API functions provide no way to read comments, so you can't get a complete translation using the API functions alone. Instead, for this particular purpose, it's better to parse the file line by line.

Retrieving Values
To retrieve the value of an item, you use the GetIniValue method, which accepts sectionName and keyName parameters. The method creates an XPath query that searches for the section with a name attribute matching the supplied section name, and then searches within that section for an item with a key attribute matching the supplied key name. If the XPath query matches an item, the function returns the text value of the value attribute of that item; otherwise it returns null.


   public String GetIniValue(String sectionName,
      String keyName) {
      XMLNode N = null;
      if ((sectionName != null) && (sectionName != "")
         && (keyName != null) && (keyName != "")) {
         N = GetItem(sectionName, keyName);
         if (N != null) {
            return(N