没有section的ini文件可以用ConfigParser解析吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了没有section的ini文件可以用ConfigParser解析吗相关的知识,希望对你有一定的参考价值。
参考技术A 这篇文章主要介绍了Python中使用ConfigParser解析ini配置文件实例,本文给出了创建和读取ini文件的例子,需要的朋友可以参考下ini文件是windows中经常使用的配置文件,主要的格式为:
复制代码代码如下:
[Section1]
option1 : value1
option2 : value2
python提供了一个简单的模块ConfigParser可以用来解析类似这种形式的文件。对于ConfigParser模块可以解析key:value和key=value这样的类型,对于#和;开头的行将会自动忽视掉。相当于注释行。常用的函数:
复制代码代码如下:
ConfigParser.RawConfigParser()
RawConfigParser Object的操作有:
.sections() : 返回所有可用的section
.addsection(sectionname) :添加section
.set(sectionname, optionname, optionvalue): 添加option
.hassection(sectionname) :判断
.options(sectionname) : 返回section下可用的option
.hasoption(sectionname, optionname) : 判断
.read(filename) : 读取文件
.wrie(filename) : 将RawConfigParser对象写到文件中
.get(sectionname, optionname) : 获取值, 默认的是返回string类型
.getfloat, .getint, .getboolean : 获取不同类型的返回值,参数和get的参数一样
.items(sectionname) :列出section下的所有key:value
.remove(sectionname) :删除section
.remove(sectionname, option_name) : 删除section下的某个option
Demo -- 生成文件
复制代码代码如下:
$ cat ini_demo.py
# -*- coding:utf-8 -*-
import ConfigParser
def gen_ini():
ftest = open('test','w')
config_write = ConfigParser.RawConfigParser()
config_write.add_section('Section_a')
config_write.add_section('Section_b')
config_write.add_section('Section_c')
config_write.set('Section_a','option_a1','apple_a1')
config_write.set('Section_a','option_a2','banana_a2')
config_write.set('Section_b','option_b1','apple_b1')
config_write.set('Section_b','option_b2','banana_b2')
config_write.set('Section_c','option_c1','apple_c1')
config_write.set('Section_c','option_c2','banana_c2')
config_write.write(ftest)
ftest.close()
if __name__ == "__main__":
gen_ini()
最后生成的文件为:
复制代码代码如下:
$ cat test
[Section_a]
option_a1 = apple_a1
option_a2 = banana_a2
[Section_c]
option_c2 = banana_c2
option_c1 = apple_c1
[Section_b]
option_b1 = apple_b1
option_b2 = banana_b2
Demo -- 读取文件
def read_ini():
config_read = ConfigParser.RawConfigParser()
config_read.read('test')
print config_read.sections()
print config_read.items('Section_a')
print config_read.get('Section_a','option_a1')
最后的结果为:
复制代码代码如下:
['Section_a', 'Section_c', 'Section_b']
[('option_a2', 'banana_a2'), ('option_a1', 'apple_a1')]
apple_a1本回答被提问者采纳
C#配置文件Section节点处理总结
本文实例总结了C#配置文件Section节点处理方法。分享给大家供大家参考。具体如下:
很多时候在项目开发中,我们都需要用配置文件来存储一些关于程序配置信息,这时候你可以选择INI或者app.config来存储,这里对此总结一下:
配置文件示例如下:
代码如下:
<configuration>
<configSections>
<sectionGroup name=”module”>
<section name=”appSettings” type=”System.Configuration.NameValueFileSectionHandler”/>
</sectionGroup>
</configSections>
<module>
<appSettings>
<!–谷歌地图–>
<add key=”Googlemap” value=”1″/>
<!–箱实时状态信息汇总–>
<add key=”Cab_rt” value=”1″/>
</appSettings>
</module>
</configuration>
操作代码如下:
代码如下:
using System.Collections.Specialized;
using System.Configuration;
namespace ConsoleApplication38
{
class Program
{
static void Main(string[] args)
{
try
{
SectionToolV2 _sectionHelper = new SectionToolV2(“module/appSettings”);
Console.WriteLine(_sectionHelper.GetValue(“Googlemap”));
Console.WriteLine(_sectionHelper.ContainKey(“YanZhiwei”));
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
Console.ReadLine();
}
}
}
class SectionToolV2
{
NameValueCollection ModulSettings = null;
/// <summary>
///构造函数
/// </summary>
/// <param name=”sectionName”>section名称</param>
public SectionToolV2(string sectionName)
{
ModulSettings = ConfigurationManager.GetSection(sectionName) as NameValueCollection;
}
/// <summary>
/// 是否包含该Section
/// </summary>
/// <returns></returns>
public bool ContainSection()
{
return !(ModulSettings == null);
}
/// <summary>
/// Section是否包含Key
/// </summary>
/// <param name=”key”>键</param>
/// <returns>值</returns>
public bool ContainKey(string key)
{
if (ContainSection())
{
return !(ModulSettings[key] == null);
}
return false;
}
/// <summary>
/// 根据键获取值
/// </summary>
/// <param name=”Key”>键</param>
/// <returns>当不存在键的时候,返回string.Empty</returns>
public string GetValue(string Key)
{
string _value = string.Empty;
if (ContainKey(Key))
{
_value = ModulSettings[Key];
}
return _value;
}
}
}
C#配置文件Section节点处理总结
本文地址: http://www.paobuke.com/develop/c-develop/pbk23437.html
相关内容
以上是关于没有section的ini文件可以用ConfigParser解析吗的主要内容,如果未能解决你的问题,请参考以下文章