https://github.com/wandercn/gostd_settings
gostd_settings is library for reading and writing properties files. 是一个用于读写属性配置文件的库
虽然是个小工具,我还是运用了Builder设计模式。有需要的可以使用,目前就支持单一ini文件格式
新建配置并保存到文件
use gostd_settings::{Settings, builder};
fn main() {
let mut p = builder().file_type_properties().build();
p.set_property("HttpPort", "8081");
p.set_property(
"MongoServer",
"mongodb://10.11.1.5,10.11.1.6,10.11.1.7/?replicaSet=mytest",
);
p.set_property_slice(
"LogLevel",
["Debug", "Info", "Warn"].iter().map(|s| s.to_string()).collect(),
);
match p.store_to_file("config.properties") {
Ok(()) => println!("store to file app.conf success"),
Err(err) => println!("store to file app.conf failed: {}", err),
}
}
// output
$ cat config.properties
HttpPort = 8081
LogLevel = Debug,Info,Warn
MongoServer = mongodb://10.11.1.5,10.11.1.6,10.11.1.7/?replicaSet=mytest
从文件读取配置
use gostd_settings::{builder, Settings};
fn main() -> Result<(), std::io::Error> {
let file = "./config.properties";
let mut p = builder().file_type_properties().build();
p.load_from_file(file)?;
if let Some(httpProt) = p.property("HttpPort") {
println!("{}", httpProt)
}
if let Some(logLevel) = p.property_slice("LogLevel") {
println!("{:?}", logLevel)
}
Ok(())
}
// output
8081
["Debug", "Info", "Warn"]
Ext Link: https://github.com/wandercn/gostd_settings
1
共 0 条评论, 1 页
评论区
写评论还没有评论