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

   在現實工作中,我們常常需要保存一些系統配置信息,大家一般都會選擇配置文件來完成,本文根據筆者工作中用到的讀取配置文件的方法小小總結一下,主要敘述的是spring讀取配置文件的方法。
一.讀取xml配置文件
(一)新建一個java bean(HelloBean.java)
java 代碼
  1. package chb.demo.vo;   
  2.   
  3. public class HelloBean {   
  4.  private String helloWorld;   
  5.   
  6.  public String getHelloWorld() {   
  7.   return helloWorld;   
  8.  }   
  9.   
  10.  public void setHelloWorld(String helloWorld) {   
  11.   this.helloWorld = helloWorld;   
  12.  }   
  13. }   
  14.   

(二)構造一個配置文件(beanConfig.xml)

xml 代碼
  1. xml version="1.0" encoding="UTF-8"?>  
  2. >  
  3. <beans>  
  4.  <bean id="helloBean" class="chb.demo.vo.HelloBean">  
  5.   <property name="helloWorld">  
  6.    <value>Hello!chb!value>  
  7.   property>  
  8.  bean>  
  9. beans>  

(三)讀取xml文件

1.利用ClassPathXmlApplicationContext
java 代碼
  1. ApplicationContext context = new ClassPathXmlApplicationContext("beanConfig.xml");   
  2. HelloBean helloBean = (HelloBean)context.getBean("helloBean");   
  3. System.out.println(helloBean.getHelloWorld());  
2.利用FileSystemResource讀取
java 代碼
  1. Resource rs = new FileSystemResource("D:/software/tomcat/webapps/springWebDemo/WEB-INF/classes/beanConfig.xml");   
  2.   BeanFactory factory = new XmlBeanFactory(rs);   
  3.   HelloBean helloBean = (HelloBean)factory.getBean("helloBean");/   
  4.   System.out.println(helloBean.getHelloWorld());   
 值得注意的是:利用FileSystemResource,則配置文件必須放在project直接目錄下,或者寫明絕對路徑,否則就會拋出找不到文件的異常
二.讀取properties配置文件
這裏介紹兩種技術:利用spring讀取properties 文件和利用java.util.Properties讀取
(一)利用spring讀取properties 文件
我們還利用上面的HelloBean.java文件,構造如下beanConfig.properties文件:
properties 代碼
  1. helloBean.class=chb.demo.vo.HelloBean   
  2. helloBean.helloWorld=Hello!chb!  
屬性文件中的"helloBean"名稱即是Bean的別名設定,.class用於指定類來源。
然後利用org.springframework.beans.factory.support.PropertiesBeanDefinitionReader來讀取屬性文件
java 代碼
  1. BeanDefinitionRegistry reg = new DefaultListableBeanFactory();   
  2.  PropertiesBeanDefinitionReader reader = new PropertiesBeanDefinitionReader(reg);   
  3.  reader.loadBeanDefinitions(new ClassPathResource("beanConfig.properties"));   
  4.  BeanFactory factory = (BeanFactory)reg;   
  5.  HelloBean helloBean = (HelloBean)factory.getBean("helloBean");   
  6.  System.out.println(helloBean.getHelloWorld());   
 
(二)利用java.util.Properties讀取屬性文件
比如,我們構造一個ipConfig.properties來保存服務器ip地址和端口,如:
properties 代碼
  1. ip=192.168.0.1   
  2. port=8080  
則,我們可以用如下程序來獲得服務器配置信息:
java 代碼
  1. InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ipConfig.properties");   
  2.   Properties p = new Properties();   
  3.   try {   
  4.    p.load(inputStream);   
  5.   } catch (IOException e1) {   
  6.    e1.printStackTrace();   
  7.   }   
  8. System.out.println("ip:"+p.getProperty("ip")+",port:"+p.getProperty("port"));  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章