1. 程式人生 > >java讀取配置檔案的幾種方法

java讀取配置檔案的幾種方法

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

(二)構造一個配置檔案(beanConfig.xml)

xml 程式碼
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2. <!---->>  
  3. <beans>  
  4. <beanid="helloBean"class="chb.demo.vo.HelloBean">
  5. <propertyname="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"));  
本文只介紹了一些簡單操作,不當之處希望大家多多指教