1. 程式人生 > >java resources目錄下配置檔案的讀取操作封裝類

java resources目錄下配置檔案的讀取操作封裝類

首先明確,java是編譯性語言,讀取應該都是針對編譯後的檔案.

package com.xkygame.ssm.utils;

/**
* Created by Clarence on 2017/7/27.
*/
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.*;
import java.net.URL;
import java.util.Properties;

/**
* Desc:properties檔案獲取工具類
*
*/
public class PropertyUtil {
private static final Logger logger
= LoggerFactory.getLogger(PropertyUtil.class);
private static Properties props;
private static Properties redisProps;
private static Properties commonProps;
private static String name;

synchronized static private void loadProps(String fileName){
logger.info("開始載入properties檔案內容.......");
logger.info(fileName);
props
= new Properties();
InputStream in = null;
try {
//第一種,通過類載入器進行獲取properties檔案流
in = PropertyUtil.class.getClassLoader().getResourceAsStream(fileName);
//第二種,通過類進行獲取properties檔案流
//in = PropertyUtil.class.getResourceAsStream("/jdbc.properties");
props.load(in);
} catch (FileNotFoundException e) {
logger
.error(fileName+"檔案未找到");
} catch (IOException e) {
logger.error("出現IOException");
} finally {
try {
if(null != in) {
in.close();
}
} catch (IOException e) {
logger.error("jdbc.properties檔案流關閉出現異常");
}
}
logger.info("載入properties檔案內容完成...........");
logger.info("properties檔案內容:" + props);
}


public static String getProperty(String fileName,String key){
if(null == props) {
loadProps(fileName);
}
return props.getProperty(key);
}

/**
* 更新(或插入)一對properties資訊(主鍵及其鍵值)
* 如果該主鍵已經存在,更新該主鍵的值;
* 如果該主鍵不存在,則外掛一對鍵值。
* @param keyname 鍵名
* @param keyvalue 鍵值
*/
public static void setProperty(String fileName,String keyname,String keyvalue) {
URL url = PropertyUtil.class.getResource("/" + fileName);
if(null == props) {
loadProps(fileName); //必須在輸出流例項化之前載入
}
OutputStream fos = null;
try {
// 開啟檔案的方式預設是覆蓋,就是一旦執行了下面這句,那麼原有檔案中的內容被清空
// 所以在要先載入loadProps(fileName); 否則檔案原來的資料會丟失
fos = new FileOutputStream(url.getFile());

props.setProperty(keyname, keyvalue);
// 以適合使用 load 方法載入到 Properties 表中的格式,
// 將此 Properties 表中的屬性列表(鍵和元素對)寫入輸出流
props.store(fos, "Update '" + keyname + "' value");
} catch (IOException e) {
logger.error("屬性檔案更新錯誤:"+e.getMessage());
e.printStackTrace();
}finally {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

public static String getProperty(String fileName,String key, String defaultValue) {
if(null == props) {
loadProps(fileName);
}
return props.getProperty(key, defaultValue);
}

public static Properties getAll(String fileName){
logger.info("檔名:"+fileName);
logger.info("props:"+props);
if(null == props){
loadProps(fileName);
}else{
if(!props.propertyNames().equals(fileName)){
loadProps(fileName);
}
}

return props;
}
}