VBScript reads a configuration file in XML format _vbs

Source: Internet
Author: User
Copy Code code as follows:

Class Clsgetprofile
' ルートドキュメント
Private Rootdoc
' xmlファイル name とセクション をセットする
' Argument: "1"ファイル name not NULL
' 戻 I did easily: なし
Public Sub setprofile (strFileName)
Set Data_xml = CreateObject ("Microsoft.XMLDOM")
Data_xml.async = False
Data_xml.load (strFileName)
Set Rootdoc = data_xml.documentelement
End Sub
' キーの impose 応 する を obtained する
' Argument: "1"キー name not NULL
' "2"セクション name not NULL
' 戻 I did easily: キーの impose 応 する
Public Function GetItem (strSectionName, ItemName)
Set Sectionnode = Rootdoc.selectsinglenode (strsectionname)
GetItem = Sectionnode.selectsinglenode (itemname). attributes (0). nodevalue
End Function
End Class
' Use サンプル
' クラスインスタンスを generation する
' Dim config:set config = New clsgetprofile
' Configure ファイル name とセクション をセットする
' Call Config.setprofile ("Config.xml")
' きーの impose 応 する をゲットする
' WScript.Echo Config.getitem ("Messagedefine", "info.001")
' WScript.Echo Config.getitem ("Messagedefine", "info.003")
' WScript.Echo Config.getitem ("Messagedefine", "error.009")
' WScript.Echo Config.getitem ("Messagedefine", "error.012")
Class Clsgetprofile
' ルートドキュメント
Private Rootdoc
' xmlファイル name とセクション をセットする
' Argument: "1"ファイル name not NULL
' 戻 I did easily: なし
Public Sub setprofile (strFileName)
Set Data_xml = CreateObject ("Microsoft.XMLDOM")
Data_xml.async = False
Data_xml.load (strFileName)
Set Rootdoc = data_xml.documentelement
End Sub
' キーの impose 応 する を obtained する
' Argument: "1"キー name not NULL
' "2"セクション name not NULL
' 戻 I did easily: キーの impose 応 する
Public Function GetItem (strSectionName, ItemName)
Set Sectionnode = Rootdoc.selectsinglenode (strsectionname)
GetItem = Sectionnode.selectsinglenode (itemname). attributes (0). nodevalue
End Function
End Class
' Use サンプル
' クラスインスタンスを generation する
' Dim config:set config = New clsgetprofile
' Configure ファイル name とセクション をセットする
' Call Config.setprofile ("Config.xml")
' きーの impose 応 する をゲットする
' WScript.Echo Config.getitem ("Messagedefine", "info.001")
' WScript.Echo Config.getitem ("Messagedefine", "info.003")
' WScript.Echo Config.getitem ("Messagedefine", "error.009")
' WScript.Echo Config.getitem ("Messagedefine", "error.012")

Configuration file Format:
Copy Code code as follows:

<?xml version= "1.0" encoding= "UTF-8"?>
<Configuration>
<!--メッセージ definition
-->
<MessageDefine>
<info.001 value= "Backup start. "/>
<info.002 value= "Backup finally. "/>
<info.003 value= "Backup is always the reason. "/>
<info.004 value= "Backup stop. "/>
</MessageDefine>
<!--その his configuration
-->
<OtherSection>
<user value= "root"/>
</OtherSection>
<WindowsLogToolConfig>
<port value= "3306"/>
</WindowsLogToolConfig>
</Configuration>

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.