java中讀取配置文件的方法

轉自:http://blog.csdn.net/stypace/article/details/38414871html

1、使用org.apache.commons.configurationjava

須要使用的是jar包:commons-collections-3.2.1.jar、commons-configuration-1.10.jar、commons-lang-2.6.jar和commons-logging-1.2.jar。web

能夠讀取的配置文件:xml和propertiesspring

一、讀取xml文件apache

 

[java]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;  
  2.   
  3. import org.apache.commons.configuration.Configuration;  
  4. import org.apache.commons.configuration.ConfigurationException;  
  5. import org.apache.commons.configuration.XMLConfiguration;  
  6. public class xmlLoaderTest {  
  7.   
  8.     public static void main(String[] args) throws ConfigurationException{  
  9.        Configuration config = new XMLConfiguration("com/styspace/config.xml");  
  10.        String name = config.getString("Account.name");  
  11.        System.out.println("name:" + name);  
  12.     }  
  13. }  
  14. </span>  

須要注意的是config.getString(「Account.name」)中的參數是Account.name,這個參數是XPath格式的,並且不能包含xml中的根元素。app

 

使用到的config.xml內容以下:工具

 

[html]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;"><?xml version="1.0" encoding="gbk"?>         
  2. <Accounts>   
  3.     <Account type="by0003">    
  4.         <code>100001</code>   
  5.         <pass>123</pass>   
  6.         <name>李四</name>    
  7.         <money>1000000.00</money>    
  8.     </Account>    
  9. </Accounts></span>  



 

二、讀取properties文件ui

 

[java]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;  
  2.   
  3. import org.apache.commons.configuration.Configuration;  
  4. import org.apache.commons.configuration.ConfigurationException;  
  5. import org.apache.commons.configuration.PropertiesConfiguration;  
  6.   
  7. public class peropertiesLoaderTest {  
  8.   
  9.     public static void main(String[] args) throws ConfigurationException{  
  10.        Configuration config = new PropertiesConfiguration("com/styspace/config.properties");  
  11.        String name = config.getString("name");  
  12.        System.out.println("name:" + name);  
  13.     }  
  14. }  
  15. </span>  

使用到的config.properties文件內容以下:this

 

 

[plain]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;">threads.max=50threas.min=2  
  2. timout=15.52  
  3. interactive=true  
  4. color=red  
  5. speed=50  
  6. name=Default User</span>  

 

2、使用java.util.Properties讀取spa

 

[java]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;  
  2.   
  3. import java.io.IOException;  
  4. import java.io.InputStream;  
  5. import java.util.Properties;  
  6.   
  7. public class PropertiesTest {  
  8.     public static void main(String[] args){  
  9.         PropertiesTest pt = new PropertiesTest();  
  10.         try {  
  11.             pt.getProperties();  
  12.         } catch (IOException e) {  
  13.             // TODO Auto-generated catch block  
  14.             e.printStackTrace();  
  15.         }  
  16.     }  
  17.       
  18.     private void getProperties() throws IOException {  
  19.         InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("com/styspace/config.properties");  
  20.         System.out.println("begin!!!");  
  21.         Properties properties = new Properties();  
  22.         try{  
  23.             properties.load(inputStream);  
  24.         }catch (IOException ioE){  
  25.             ioE.printStackTrace();  
  26.         }finally{  
  27.             inputStream.close();  
  28.         }  
  29.         System.out.println("name:"+properties.getProperty("name"));  
  30.     }  
  31. }  
  32. </span>  

須要注意的是hetClassLoader().getResourceAsStream()的參數是項目根目錄下的路徑,儘管config.properties是該該類文件在相同的目錄下,可是不能寫成getClassLoader().getResourceAsStream("config.properties"),這樣程序會報錯,獲得的InputStream是null值。

 


ClassLoader()和URLClassLoader()區別:ClassLoader()只能查找src目錄下的文件,而URLClassLoader()則能查找任意目錄下的文件。

 

3、spring中配置文件的讀取

一、ClassPathXmlApplicationContext:從類路徑中加載。

 

二、FileSystemXmlApplicationContext:從文件系統加載。

 

三、XmlWebApplicationContext:從web系統中加載。

一、使用bean工廠獲取bean

 

[java]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;">    BeanFactory factory = null; //聲明  
  2.       
  3.     ClassPathResource resource = new ClassPathResource("spring.xml");//類路徑  
  4.     factory= new XmlBeanFactory(resource);   
  5.       
  6.     FileSystemResource fileSystemResource = new FileSystemResource("D:\\Ncode\\mcode\\sday02\\src\\spring.xml");//文件路徑  
  7.     factory= new XmlBeanFactory(fileSystemResource);   
  8.       
  9.     //XmlBeanFactory(參數能夠是resource或者fileSystemResource等  
  10.     //可是不能是 res 緣由能夠查看:文檔Part III. Core Technologies 6. Resources  
  11.     //中6.2 The Resource interface 有關isOpen方法的說明);  
  12.     //InputStreamResource res = new InputStreamResource(new FileInputStream("D:\\Ncode\\mcode\\sday02\\src\\spring.xml"));//系統路徑  
  13.   
  14.     HelloService helloService = factory.getBean("helloServiceImpl", HelloServiceImpl.class);  
  15.     helloService.sayHello();</span>  


二、使用上下文(Context)

 

上下文更加高級:提供文本信息解析工具,包括對國際化支持;提供載入文件資源的通用方法,如圖片;能夠向註冊爲監聽器的bean發送事件。

 在不多的狀況下,使用BeanFactory。

 

[java]  view plain  copy
 
  1. <span style="font-family:Microsoft YaHei;font-size:12px;">    //從文件系統  
  2.     ApplicationContext context = new FileSystemXmlApplicationContext("file:D:\\Ncode\\mcode\\sday02\\src\\spring.xml");  
  3.     //從類路徑  
  4.     ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring.xml");  
  5.       
  6.     HelloService helloService =  context.getBean("helloServiceImpl", HelloServiceImpl.class);  
  7.     helloService.sayHello();</span>  


三、在web應用中使用

 

3.一、使用XmlWebApplicationContext

 

[java]  view plain  copy
 
  1. XmlWebApplicationContext context = new XmlWebApplicationContext();   
  2. //默認的路徑/WEB-INF/applicationContext.xml  
  3. //applicationContext.xml文件名稱 能夠任意起  
  4. //從新設置路徑  
  5. //context.setConfigLocations(new String[] {"/WEB-INF/classes/applicationContext.xml"});   
  6. //設置ServletContext上下下文爲web應用程序的上下文  
  7. context.setServletContext(getServletContext());  
  8. //刷新  
  9. context.refresh();  
  10. //根據id名稱獲取  
  11. HelloDao helloDao = context.getBean("helloDaoImpl", HelloDaoImpl.class);  
  12. //執行helloDao對象的方法  
  13. helloDao.sayHello();  

3.二、使用WebApplicationContextUtils工具類

 

 

[java]  view plain  copy
 
  1. //直接採用getWebApplicationContext(getServletContext()) 獲取context對象  
  2. WebApplicationContext  context=   
  3. WebApplicationContextUtils.getWebApplicationContext(getServletContext());  
  4. //context = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());  
  5. System.out.println(context);  
  6. HelloDao helloDao = context.getBean("helloDaoImpl", HelloDaoImpl.class);  
  7. helloDao.sayHello()  

二者的區別是:

 

一、當採用getWebApplicationContext(getServletContext())獲取context對象的時候,輸出的context對象爲null  因此在使用

context.getBean("helloDaoImpl", HelloDaoImpl.class);會出現空指針的異常

   二、當採用getRequiredWebApplicationContext(getServletContext());獲取context對象的時候 會出現以下bug

java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered

相關文章
相關標籤/搜索