首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

perl处置properties文件

2012-10-14 
perl处理properties文件使用Config::Properties模块,详情请见:http://search.cpan.org/~salva/Config-Prop

perl处理properties文件

使用Config::Properties模块,详情请见:http://search.cpan.org/~salva/Config-Properties-1.70/Properties.pm

?

use Cwd;BEGIN {$ipath = getcwd . "/lib/perl/pm/";push @INC, $ipath;}use Config::Properties;my $properties = new Config::Properties();open PROPS, "< $propfile"or die "unable to open properties file";$properties->load(*PROPS);$value = $properties->getProperty( $key );# saving...open PROPS, "> $propfile"or die "unable to open properties file for writing";$properties->setProperty( $key, $val );$properties->format( '%s=%s' );$properties->store(*PROPS, $header );close PROPS;
?

热点排行