配置文件读取
我正在尝试从 .config 文件中检索一些信息。我需要搜索特定标签并获取这些标签中的属性。例如,在应用程序标签中,我需要获取属性路径。我不需要 .config 文件中的任何其他信息。我刚刚浏览 XmlTextReader 但后来意识到我需要一个配置文件,但不知道这是否是正确的方法。
I am trying to retrieve some information from a .config file. I need to search for specific tags and get the attributes in those tags. For example in application tag i need to get the attribute path. I don't need any other information from the .config file. I was just going through XmlTextReader but then realised i need a config file and don't know if it is the right way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正确的方法是使用 ConfigurationElement 后代。对于 app.config / web.config 中的每个部分,您都有一个特定的类来管理该部分。
如果需要修改app.config/web.config文件,可以使用ConfigurationManager 类。
The right way is using a ConfigurationElement descendant. For each section in app.config / web.config you have a specific class to manage that section.
If you need to modify the app.config / web.config file, you can use the ConfigurationManager class.
我发现
使用 .NET 配置文件的 appSettings 元素的 File 属性< /code>
并且您必须阅读这篇关于
使用配置文件在.NET
中还发现阅读使用 XMl 阅读器的配置文件
I found
Using the File attribute of the appSettings element of a .NET config file
And you must read this great article about
using configuration file in .NET
Also found Read config file using XMl reader