新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
小编给大家分享一下编程开发中如何实现简单属性配置文件,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
创新互联公司2013年至今,是专业互联网技术服务公司,拥有项目网站制作、成都网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元绩溪做网站,已为上家服务,为绩溪各地企业和个人服务,联系电话:13518219792a) 属性配置文件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");
看完了这篇文章,相信你对“编程开发中如何实现简单属性配置文件”有了一定的了解,如果想了解更多相关知识,欢迎关注创新互联-成都网站建设公司行业资讯频道,感谢各位的阅读!