编程开发中如何实现简单属性配置文件
小编给大家分享一下编程开发中如何实现简单属性配置文件,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
a) 属性配置文件portal.conf
article_img_path=search_images/rss_img/
film_img_path=search_images/filmdetail1/
history_img_path=search_images/historycontent333/
advertisement_on=0
advertisement1_url=http://172.21.153.81:8080/advert/ShowAdvertImage.action?frameId=10
b)类文件:
package com.utstar.tvweb.util;
import java.util.Properties;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
public class Config extends Properties {
private String fileName = "/portal.conf";
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Config()
{
try {
InputStream input = getClass().getResourceAsStream(fileName);
this.load(input);
} catch (IOException e) {
e.printStackTrace();
}
}
}
c) 使用:
Config config = (Config)getBean("config");
adverseURL1 = config.getProperty("advertisement1_url");
看完了这篇文章,相信你对“编程开发中如何实现简单属性配置文件”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341