javaweb读取配置文件的4种方法

来源:互联网 发布:大数据应用软件 编辑:程序博客网 时间:2024/06/02 02:07

方式一:采用ServletContext读取

获取配置文件的realpath,然后通过文件流读取出来或者通过方法getReasurceAsStream()。

因为是用ServletContext读取文件路径,所以配置文件可以放入在WEB-INFclasses目录中,也可以在应用层级及WEB-INF的目录中。文件存放位置具体在eclipse工程中的表现是:可以放在src下面,也可放在WEB-INFWeb-Root下面等。因为是读取出路径后,用文件流进行读取的,所以可以读取任意的配置文件包括xmlproperties。缺点:不能在servlet外面应用读取配置信息。

1.首先创建一个动态的javaweb项目,项目目录如下:


2.创建一个servlet(FileReader.java)

package com.xia.fileReader;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.text.MessageFormat;import java.util.Properties;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class FileReader extends HttpServlet {private static final long serialVersionUID = 1L;  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { /**         * response.setContentType("text/html;charset=UTF-8");目的是控制浏览器用UTF-8进行解码;         * 这样就不会出现中文乱码了         */        response.setHeader("content-type","text/html;charset=UTF-8");        readSrcDirPropCfgFile(response);//读取src目录下的db1.properties配置文件        response.getWriter().println("<hr/>");        readWebRootDirPropCfgFile(response);//读取WebRoot目录下的db2.properties配置文件        response.getWriter().println("<hr/>");        readSrcSourcePackPropCfgFile(response);//读取src目录下的config目录中的db3.properties配置文件        response.getWriter().println("<hr/>");        readWEBINFPropCfgFile(response);//读取WEB-INF目录下的JDBC目录中的db4.properties配置文件}public void readSrcDirPropCfgFile(HttpServletResponse response) throws IOException {String path = "/WEB-INF/classes/db1.properties";InputStream in = this.getServletContext().getResourceAsStream(path);    Properties props = new Properties();    props.load(in);    String driver = props.getProperty("jdbc.driver");    String url = props.getProperty("jdbc.url");    String username = props.getProperty("jdbc.username");    String password = props.getProperty("jdbc.password");    response.getWriter().println("读取src目录下的db1.properties配置文件");    response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}",                 driver,url, username, password));}public void readWebRootDirPropCfgFile(HttpServletResponse response) throws IOException{String path = "/db2.properties";InputStream in = this.getServletContext().getResourceAsStream(path);    Properties props = new Properties();    props.load(in);    String driver = props.getProperty("jdbc.driver");    String url = props.getProperty("jdbc.url");    String username = props.getProperty("jdbc.username");    String password = props.getProperty("jdbc.password");    response.getWriter().println("读取WebRoot目录下的db2.properties配置文件");    response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}",                 driver,url, username, password));}public void readSrcSourcePackPropCfgFile(HttpServletResponse response) throws IOException {String path = "/WEB-INF/classes/config/db3.properties";String realPath = this.getServletContext().getRealPath(path);    InputStreamReader reader = new InputStreamReader(new FileInputStream(realPath),"UTF-8");    Properties props = new Properties();    props.load(reader);    String driver = props.getProperty("jdbc.driver");    String url = props.getProperty("jdbc.url");    String username = props.getProperty("jdbc.username");    String password = props.getProperty("jdbc.password");    response.getWriter().println("读取src目录下的config目录中的db3.properties配置文件");    response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}",                 driver,url, username, password));}public void readWEBINFPropCfgFile(HttpServletResponse response) throws IOException {String path = "/WEB-INF/JDBC/db4.properties";String realPath = this.getServletContext().getRealPath(path);    System.out.println("realPath:"+realPath);    System.out.println("contextPath:"+this.getServletContext().getContextPath());    InputStreamReader reader = new InputStreamReader(new FileInputStream(realPath),"UTF-8");    Properties props = new Properties();    props.load(reader);    String driver = props.getProperty("jdbc.driver");    String url = props.getProperty("jdbc.url");    String username = props.getProperty("jdbc.username");    String password = props.getProperty("jdbc.password");    response.getWriter().println("读取WEB-INF目录下的JDBC目录中的db4.properties配置文件");    response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}",                 driver,url, username, password));}protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {}}

3.配置servlet(web.xml)

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">  <display-name>javaReaderFile</display-name>  <welcome-file-list>    <welcome-file>index.html</welcome-file>    <welcome-file>index.htm</welcome-file>    <welcome-file>index.jsp</welcome-file>    <welcome-file>default.html</welcome-file>    <welcome-file>default.htm</welcome-file>    <welcome-file>default.jsp</welcome-file>  </welcome-file-list>    <servlet>    <servlet-name>FileReader</servlet-name>    <servlet-class>com.xia.fileReader.FileReader</servlet-class>  </servlet>  <servlet-mapping>    <servlet-name>FileReader</servlet-name>    <url-pattern>/FileReader</url-pattern>  </servlet-mapping></web-app>
4.测试


方式二:采用ResourceBundle类读取配置信息

优点是:可以以完全限定类名的方式加载资源后,直接的读取出来,且可以在非Web应用中读取资源文件。

缺点:只能加载类src下面的资源文件且只能读取.properties文件。

[java] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. /** 
  2.  * 获取指定配置文件中所有的数据 
  3.  * @param propertyName 
  4.  *        调用方式: 
  5.  *            1.配置文件放在resource源包下,不用加后缀 
  6.  *              PropertiesUtil.getAllMessage("message"); 
  7.  *            2.放在包里面的 
  8.  *              PropertiesUtil.getAllMessage("com.test.message"); 
  9.  * @return 
  10.  */  
  11. public static List<String> getAllMessage(String propertyName) {  
  12.     // 获得资源包  
  13.     ResourceBundle rb = ResourceBundle.getBundle(propertyName.trim());  
  14.     // 通过资源包拿到所有的key  
  15.     Enumeration<String> allKey = rb.getKeys();  
  16.     // 遍历key 得到 value  
  17.     List<String> valList = new ArrayList<String>();  
  18.     while (allKey.hasMoreElements()) {  
  19.         String key = allKey.nextElement();  
  20.         String value = (String) rb.getString(key);  
  21.         valList.add(value);  
  22.     }  
  23.     return valList;  
  24. }  

方式三:采用ClassLoader方式进行读取配置信息

优点是:可以在非Web应用中读取配置资源信息,可以读取任意的资源文件信息
 缺点:只能加载类src下面的资源文件,不适合装载大文件,否则会导致jvm内存溢出
package com.xia.fileReader;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.util.Properties;public class ReadByClassLoader {public static void main(String[] args) throws IOException {readPropFileByClassLoad();} public static void readPropFileByClassLoad() throws IOException{ //读取src下面config包内的配置文件db3.properties InputStream in = ReadByClassLoader.class.getClassLoader().getResourceAsStream("config/db3.properties"); BufferedReader br = new BufferedReader(new InputStreamReader(in)); Properties props = new Properties(); props.load(br); for(Object s: props.keySet()){ System.out.println(s+":"+props.getProperty(s.toString())); } }}

方式四: PropertiesLoaderUtils工具类

[java] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. /** 
  2.  * Spring 提供的 PropertiesLoaderUtils 允许您直接通过基于类路径的文件地址加载属性资源 
  3.  * 最大的好处就是:实时加载配置文件,修改后立即生效,不必重启 
  4.  */  
  5. private static void springUtil(){  
  6.     Properties props = new Properties();  
  7.     while(true){  
  8.         try {  
  9.             props=PropertiesLoaderUtils.loadAllProperties("message.properties");  
  10.             for(Object key:props.keySet()){  
  11.                 System.out.print(key+":");  
  12.                 System.out.println(props.get(key));  
  13.             }  
  14.         } catch (IOException e) {  
  15.             System.out.println(e.getMessage());  
  16.         }  
  17.           
  18.         try {Thread.sleep(5000);} catch (InterruptedException e) {e.printStackTrace();}  
  19.     }  

修改Properties

[java] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. /** 
  2.      * 传递键值对的Map,更新properties文件 
  3.      *  
  4.      * @param fileName 
  5.      *            文件名(放在resource源包目录下),需要后缀 
  6.      * @param keyValueMap 
  7.      *            键值对Map 
  8.      */  
  9.     public static void updateProperties(String fileName,Map<String, String> keyValueMap) {  
  10.         //getResource方法使用了utf-8对路径信息进行了编码,当路径中存在中文和空格时,他会对这些字符进行转换,这样,  
  11.         //得到的往往不是我们想要的真实路径,在此,调用了URLDecoder的decode方法进行解码,以便得到原始的中文及空格路径。  
  12.         String filePath = PropertiesUtil.class.getClassLoader().getResource(fileName).getFile();  
  13.         Properties props = null;  
  14.         BufferedWriter bw = null;  
  15.   
  16.         try {  
  17.             filePath = URLDecoder.decode(filePath,"utf-8");      
  18.             log.debug("updateProperties propertiesPath:" + filePath);  
  19.             props = PropertiesLoaderUtils.loadProperties(new ClassPathResource(fileName));  
  20.             log.debug("updateProperties old:"+props);  
  21.               
  22.             // 写入属性文件  
  23.             bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(filePath)));  
  24.               
  25.             props.clear();// 清空旧的文件  
  26.               
  27.             for (String key : keyValueMap.keySet())  
  28.                 props.setProperty(key, keyValueMap.get(key));  
  29.               
  30.             log.debug("updateProperties new:"+props);  
  31.             props.store(bw, "");  
  32.         } catch (IOException e) {  
  33.             log.error(e.getMessage());  
  34.         } finally {  
  35.             try {  
  36.                 bw.close();  
  37.             } catch (IOException e) {  
  38.                 e.printStackTrace();  
  39.             }  
  40.         }  
  41.     }  
0 0
原创粉丝点击