日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

java讀取配置文件的幾種方法

系統 1911 0

java讀取配置文件的幾種方法

在現實工作中,我們常常需要保存一些系統配置信息,大家一般都會選擇配置文件來完成,本文根據筆者工作中用到的讀取配置文件的方法小小總結一下,主要敘述的是spring讀取配置文件的方法。
一.讀取xml配置文件
(一)新建一個java bean
package chb.demo.vo;

public class HelloBean ... {
private StringhelloWorld;

public StringgetHelloWorld() ... {
return helloWorld;
}


public void setHelloWorld(StringhelloWorld) ... {
this .helloWorld = helloWorld;
}

}


(二)構造一個配置文件

<? xmlversion="1.0"encoding="UTF-8" ?>
<! DOCTYPEbeansPUBLIC"-//SPRING//DTDBEAN//EN""http://www.springframework.org/dtd/spring-beans.dtd" >
< beans >
< bean id ="helloBean" class ="chb.demo.vo.HelloBean" >
< property name ="helloWorld" >
< value > Hello!chb! </ value >
</ property >
</ bean >
</ beans >

(三)讀取xml文件

1.利用ClassPathXmlApplicationContext
ApplicationContextcontext = new ClassPathXmlApplicationContext( " beanConfig.xml " );
HelloBeanhelloBean
= (HelloBean)context.getBean( " helloBean " );
System.out.println(helloBean.getHelloWorld());
2.利用FileSystemResource讀取
Resourcers = new FileSystemResource( " D:/software/tomcat/webapps/springWebDemo/WEB-INF/classes/beanConfig.xml " );
BeanFactoryfactory
= new XmlBeanFactory(rs);
HelloBeanhelloBean
= (HelloBean)factory.getBean( " helloBean " );
System.out.println(helloBean.getHelloWorld());
值得注意的是:利用FileSystemResource,則配置文件必須放在project直接目錄下,或者寫明絕對路徑,否則就會拋出找不到文件的異常
二.讀取properties配置文件
這里介紹兩種技術:利用spring讀取properties 文件和利用java.util.Properties讀取
(一)利用spring讀取properties 文件
我們還利用上面的HelloBean.java文件,構造如下beanConfig.properties文件:
helloBean.class=chb.demo.vo.HelloBean
helloBean.helloWorld=Hello!chb!
屬性文件中的"helloBean"名稱即是Bean的別名設定,.class用于指定類來源。
然后利用org.springframework.beans.factory.support.PropertiesBeanDefinitionReader來讀取屬性文件
BeanDefinitionRegistryreg = new DefaultListableBeanFactory();
PropertiesBeanDefinitionReaderreader
= new PropertiesBeanDefinitionReader(reg);
reader.loadBeanDefinitions(
new ClassPathResource( " beanConfig.properties " ));
BeanFactoryfactory
= (BeanFactory)reg;
HelloBeanhelloBean
= (HelloBean)factory.getBean( " helloBean " );
System.out.println(helloBean.getHelloWorld());
(二)利用java.util.Properties讀取屬性文件
比如,我們構造一個ipConfig.properties來保存服務器ip地址和端口,如:
ip=192.168.0.1
port=8080
則,我們可以用如下程序來獲得服務器配置信息:
InputStreaminputStream = this .getClass().getClassLoader().getResourceAsStream( " ipConfig.properties " );
Propertiesp
= new Properties();
try ... {
p.load(inputStream);
}
catch (IOExceptione1) ... {
e1.printStackTrace();
}

System.out.println(
" ip: " + p.getProperty( " ip " ) + " ,port: " + p.getProperty( " port " ));
本文只介紹了一些簡單操作,不當之處希望大家多多指教

java讀取配置文件的幾種方法


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 彭泽县| 密云县| 醴陵市| 德江县| 彭泽县| 建始县| 宣武区| 兴城市| 绥宁县| 龙岩市| 普兰店市| 筠连县| 山西省| 洛浦县| 田东县| 大城县| 比如县| 兰西县| 榆社县| 乌兰浩特市| 阿勒泰市| 滕州市| 石渠县| 策勒县| 庆阳市| 锡林郭勒盟| 崇仁县| 萨迦县| 长岭县| 睢宁县| 荣成市| 民县| 常德市| 乐平市| 南京市| 辽宁省| 蒲江县| 嘉祥县| 修水县| 天全县| 高平市|