zoukankan      html  css  js  c++  java
  • 用VB.net实现对.ini文件的读写操作的类

     

    Option Explicit On

    Module INI
        'INICont.bas Ver 1.0+a  INI    '====================================================================
        'GetIntFromINI( sectionName , keyName , defaultValue, iniPath )
        '
        '          sectionName:节点名

        '          keyName    :配置项名
        '          defaultValue:默认值

        '          iniPath       :INI配置文件的路径

        '
        '====================================================================

          //声明从INI配置文件中获取类型为Int的配置项的值的系统函数
          Private Declare Function GetPrivateProfileInt Lib "kernel32" Alias "GetPrivateProfileIntA" (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal nDefault As Integer, ByVal lpFileName As String) As Integer

         //声明从INI配置文件中获取类型为string的配置项的值的系统函数
        Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Integer, ByVal lpFileName As String) As Integer

          //声明向INI配置文件中写入类型为string的配置项的值的系统函数

          Private Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpString As String, ByVal lpFileName As String) As Integer

         //从INI配置文件中获取类型为Int的配置项的值

        Public Function GetIntFromINI(ByVal sectionName As String, ByVal keyName As String, ByVal defaultValue As Integer, ByVal iniPath As String) As Integer

                   GetIntFromINI = GetPrivateProfileInt(sectionName, keyName, defaultValue, iniPath)
        End Function

         //从INI配置文件中获取类型为string的配置项的值
        Public Function GetStrFromINI(ByVal sectionName As String, ByVal keyName As String, ByVal defaultValue As String, ByVal iniPath As String) As String
            Dim buffer As String 

            Dim rc As Integer 

            buffer = Space(256)
           

            rc = GetPrivateProfileString(sectionName, keyName, defaultValue, buffer, buffer.Length, iniPath)
            

            GetStrFromINI = Left(buffer, InStr(buffer, vbNullChar) - 1)
        End Function

         //向INI配置文件中写入类型为string的配置项的值

         Public Function WriteStrINI(ByVal sectionName As String, ByVal keyName As String, ByVal setValue As String, ByVal iniPath As String) As Integer
            Dim rc As Integer 

            rc = WritePrivateProfileString(sectionName, keyName, setValue, iniPath)

            If rc Then
                rc = 1
            End If
            WriteStrINI = rc
        End Function

      End Module

  • 相关阅读:
    Python爬虫教程-06-爬虫实现百度翻译(requests)
    Python爬虫教程-04-response简介
    Python爬虫教程-05-python爬虫实现百度翻译
    LeetCode——Balanced Binary Tree
    LeetCode——Min Stack
    LeetCode——Count and Say
    LeetCode——Invert Binary Tree
    LeetCode——Contains Duplicate II
    设计模式——桥接模式
    设计模式——责任链模式
  • 原文地址:https://www.cnblogs.com/kevinGao/p/2224218.html
Copyright © 2011-2022 走看看