比如有ini文件:test.ini
[111]
aaa
[222]
bbb
[333]
ccc如何获取[111],[222],[333]呢?

解决方案 »

  1.   

    使用API: GetPrivateProfileSection
    DWORD GetPrivateProfileSection(
      LPCTSTR lpAppName,        // section name
      LPTSTR lpReturnedString,  // return buffer
      DWORD nSize,              // size of return buffer
      LPCTSTR lpFileName        // initialization file name
    );返回的lpReturnedString包含了该Section下的所有Key名和键值对,以空字符分割。
    _______________________________________________________________GetPrivateProfileSection
    The GetPrivateProfileSection function retrieves all the keys and values for the specified section of an initialization file. Windows 95/98/Me: The specified profile section must not exceed 32K.Windows NT/2000 or later: The specified profile section has no size limit.Note  This function is provided only for compatibility with 16-bit applications written for Windows. Applications should store initialization information in the registry.DWORD GetPrivateProfileSection(
      LPCTSTR lpAppName,        // section name
      LPTSTR lpReturnedString,  // return buffer
      DWORD nSize,              // size of return buffer
      LPCTSTR lpFileName        // initialization file name
    );
    Parameters
    lpAppName 
    [in] Pointer to a null-terminated string specifying the name of the section in the initialization file. 
    lpReturnedString 
    [out] Pointer to a buffer that receives the key name and value pairs associated with the named section. The buffer is filled with one or more null-terminated strings; the last string is followed by a second null character. 
    nSize 
    [in] Specifies the size, in TCHARs, of the buffer pointed to by the lpReturnedString parameter. 
    Windows 95/98/Me: The maximum buffer size is 32,767 characters. lpFileName 
    [in] Pointer to a null-terminated string that specifies the name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory. 
    Return Values
    The return value specifies the number of characters copied to the buffer, not including the terminating null character. If the buffer is not large enough to contain all the key name and value pairs associated with the named section, the return value is equal to nSize minus two. Res
    The data in the buffer pointed to by the lpReturnedString parameter consists of one or more null-terminated strings, followed by a final null character. Each string has the following format: key=stringThe GetPrivateProfileSection function is not case-sensitive; the string pointed to by the lpAppName parameter can be a combination of uppercase and lowercase letters. This operation is atomic; no updates to the specified initialization file are allowed while the key name and value pairs for the section are being copied to the buffer pointed to by the lpReturnedString parameter. Windows NT/2000 or later: Calls to private profile functions may be mapped to the registry instead of to the specified initialization files. This mapping occurs when the initialization file and section are specified in the registry under the following keys: HKEY_LOCAL_MACHINE\Software\Microsoft\
            Windows NT\CurrentVersion\IniFileMappingThis mapping is likely if an application modifies system-component initialization files, such as Control.ini, System.ini, and Winfile.ini. In these cases, the GetPrivateProfileSection function retrieves information from the registry, not from the initialization file; the change in the storage location has no effect on the function's behavior. The profile functions use the following steps to locate initialization information: Look in the registry for the name of the initialization file, say MyFile.ini, under IniFileMapping: 
    HKEY_LOCAL_MACHINE\Software\Microsoft\
            Windows NT\CurrentVersion\IniFileMapping\myfile.ini Look for the section name specified by lpAppName. This will be a named value under myfile.ini, or a subkey of myfile.ini, or will not exist. 
    If the section name specified by lpAppName is a named value under myfile.ini, then that value specifies where in the registry you will find the keys for the section. 
    If the section name specified by lpAppName is a subkey of myfile.ini, then named values under that subkey specify where in the registry you will find the keys for the section. If the key you are looking for does not exist as a named value, then there will be an unnamed value (shown as <No Name>) that specifies the default location in the registry where you will find the key. 
    If the section name specified by lpAppName does not exist as a named value or as a subkey under myfile.ini, then there will be an unnamed value (shown as <No Name>) under myfile.ini that specifies the default location in the registry where you will find the keys for the section. 
    If there is no subkey for MyFile.ini, or if there is no entry for the section name, then look for the actual MyFile.ini on the disk and read its contents. 
    When looking at values in the registry that specify other registry locations, there are several prefixes that change the behavior of the .ini file mapping: ! - this character forces all writes to go both to the registry and to the .ini file on disk. 
    # - this character causes the registry value to be set to the value in the Windows 3.1 .ini file when a new user logs in for the first time after setup. 
    @ - this character prevents any reads from going to the .ini file on disk if the requested data is not found in the registry. 
    USR: - this prefix stands for HKEY_CURRENT_USER, and the text after the prefix is relative to that key. 
    SYS: - this prefix stands for HKEY_LOCAL_MACHINE\SOFTWARE, and the text after the prefix is relative to that key. 
    Windows NT/2000 or later: Comments (any line that starts with a semicolon) are stripped out and not returned in the lpReturnedString buffer. Windows 95/98/Me: The lpReturnedString buffer receives a copy of the entire section, including comments. 
      

  2.   

    可以用Open 语句来得到:
    Private Sub Command1_Click()
        Dim temp As String
        Open "c:\test.ini" For Input As #1
        While Not EOF(1)
            Line Input #1, temp
            If Left(temp, 1) = "[" And Right(temp, 1) = "]" Then Debug.Print temp
        Wend
        Close #1
    End Sub
      

  3.   

    SRY,看错,返回所有Section使用GetPrivateProfileSectionNames
    DWORD GetPrivateProfileSectionNames(
      LPTSTR lpszReturnBuffer,  // return buffer
      DWORD nSize,              // size of return buffer
      LPCTSTR lpFileName        // initialization file name
    );
      

  4.   

    我的网站上有操作INI的源码,你可以看看。http://www.j2soft.cn/VB资料->查询“操作INI文件”;=================
    学习技巧与源码下载站:
    http://www.j2soft.cn/
    http://j2soft.008.net/