博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java读取.properties配置文件的几种方法
阅读量:5105 次
发布时间:2019-06-13

本文共 4988 字,大约阅读时间需要 16 分钟。

一.通过jdk提供的java.util.Properties类

        此类继承自java.util.HashTable,即实现了Map接口,所以,可使用相应的方法来操作属性文件,但不建议使用像put、putAll这 两个方法,因为put方法不仅允许存入String类型的value,还可以存入Object类型的。因此java.util.Properties类提 供了getProperty()和setProperty()方法来操作属性文件,同时使用store或save(已过时)来保存属性值(把属性值写 入.properties配置文件)。在使用之前,还需要加载属性文件,它提供了两个方法:load和loadFromXML。

        load有两个方法的重载:load(InputStream inStream)、load(Reader reader),所以,可根据不同的方式来加载属性文件。

        可根据不同的方式来获取InputStream,如:

1.通过当前类加载器的getResourceAsStream方法获取下载地址

  1. InputStream inStream = TestProperties.class.getClassLoader().getResourceAsStream("test.properties");  

2.从文件获取

  1. InputStream inStream = new FileInputStream(new File("filePath"));  

3.也是通过类加载器来获取,和第一种一样

  1. InputStream in = ClassLoader.getSystemResourceAsStream("filePath");  

4.在servlet中,还可以通过context来获取InputStream

  1. InputStream in = context.getResourceAsStream("filePath");  

5.通过URL来获取

  1. URL url = new URL("path");  
  2. InputStream inStream = url.openStream();  

读取方法如下:

  1. Properties prop = new Properties();    
  2. prop.load(inStream);    
  3. String key = prop.getProperty("username");    
  4. //String key = (String) prop.get("username");  

 

二.通过java.util.ResourceBundle类读取

        这种方式比使用Properties要方便一些。

1.通过ResourceBundle.getBundle()静态方法来获取

        ResourceBundle是一个抽象类,这种方式来获取properties属性文件不需要加.properties后缀名,只需要文件名即可。

  1. ResourceBundle resource = ResourceBundle.getBundle("com/mmq/test");//test为属性文件名,放在包com.mmq下,如果是放在src下,直接用test即可    
  2. String key = resource.getString("username");  

2.从InputStream中读取

        获取InputStream的方法和上面一样,不再赘述。

  1. ResourceBundle resource = new PropertyResourceBundle(inStream);  

        注意:在使用中遇到的最大的问题可能是配置文件的路径问题,如果配置文件入在当前类所在的包下,那么需要使用包名限定, 如:test.properties入在com.mmq包下,则要使用com/mmq/test.properties(通过Properties来获 取)或com/mmq/test(通过ResourceBundle来获取);属性文件在src根目录下,则直接使用test.properties下载地址或test即可。

三.实例

ResourceLoader.java

1 package com.bijian.study;   2    3 import java.io.File;   4 import java.io.FileInputStream;   5 import java.util.HashMap;   6 import java.util.Map;   7 import java.util.Properties;   8    9 public final class ResourceLoader {  10   11     private static ResourceLoader loader = new ResourceLoader();  12     private static Map
loaderMap = new HashMap
(); 13 14 private ResourceLoader() { 15 } 16 17 public static ResourceLoader getInstance() { 18 return loader; 19 } 20 21 public Properties getPropFromProperties(String fileName) throws Exception { 22 23 Properties prop = loaderMap.get(fileName); 24 if (prop != null) { 25 return prop; 26 } 27 String filePath = null; 28 String configPath = System.getProperty("configurePath"); 29 30 if (configPath == null) { 31 filePath = this.getClass().getClassLoader().getResource(fileName).getPath(); 32 } else { 33 filePath = configPath + "/" + fileName; 34 } 35 prop = new Properties(); 36 prop.load(new FileInputStream(new File(filePath))); 37 38 loaderMap.put(fileName, prop); 39 return prop; 40 } 41 }

PropertiesUtil.java

1 package com.bijian.study;   2    3 import java.util.Properties;   4 import java.util.concurrent.ConcurrentHashMap;   5 import java.util.concurrent.ConcurrentMap;   6    7 /**  8  * 用ConcurrentMap来缓存属性文件的key-value  9  */  10 public class PropertiesUtil {  11       12     private static ResourceLoader loader = ResourceLoader.getInstance();  13     private static ConcurrentMap
configMap = new ConcurrentHashMap
(); 14 private static final String DEFAULT_CONFIG_FILE = "test.properties"; 15 16 private static Properties prop = null; 17 18 public static String getStringByKey(String key, String propName) { 19 try { 20 prop = loader.getPropFromProperties(propName); 21 } catch (Exception e) { 22 throw new RuntimeException(e); 23 } 24 key = key.trim(); 25 if (!configMap.containsKey(key)) { 26 if (prop.getProperty(key) != null) { 27 configMap.put(key, prop.getProperty(key)); 28 } 29 } 30 return configMap.get(key); 31 } 32 33 public static String getStringByKey(String key) { 34 return getStringByKey(key, DEFAULT_CONFIG_FILE); 35 } 36 37 public static Properties getProperties() { 38 try { 39 return loader.getPropFromProperties(DEFAULT_CONFIG_FILE); 40 } catch (Exception e) { 41 e.printStackTrace(); 42 return null; 43 } 44 } 45 }

Constant.java

1 package com.bijian.study;  2   3 public class Constant {  4       5     public static final String TEST = PropertiesUtil.getStringByKey("test", "test.properties");  6 }

Main.java

1 package com.bijian.study;  2   3 public class Main {  4   5     public static void main(String[] args) {  6           7         System.out.println(Constant.TEST);  8     }  9 }

 

转载于:https://www.cnblogs.com/xh_chiang/p/6595737.html

你可能感兴趣的文章
Microsoft .NET 远程处理:技术概述(代理模式)
查看>>
新手算法学习之路----二叉树(在一个二叉查找树中插入一个节点)
查看>>
autopep8
查看>>
GIT在Linux上的安装和使用简介
查看>>
java 类型转型
查看>>
基于C#编程语言的Mysql常用操作
查看>>
【转】Java反射 之 反射基础
查看>>
mysql数据库备份和还原的常用命令
查看>>
s3c2440实验---定时器
查看>>
HBase配置性能调优(转)
查看>>
MyEclipse10安装SVN插件
查看>>
[转]: 视图和表的区别和联系
查看>>
Regular Experssion
查看>>
python中的字符编码
查看>>
图论例题1——NOIP2015信息传递
查看>>
uCOS-II中的任务切换-图解多种任务调度时机与问题
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>