import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Hashtable;
import java.util.Properties;
import org.apache.log4j.Logger;
public class PropertyEditor {
private static Logger _log = Logger.getLogger(PropertyEditor.class);
private static Hashtable<String, Properties> pptContainer = new Hashtable<String, Properties>();
/**
*
* 方法用途和描述: 获得属性
*
* @param propertyFilePath 属性文件(包括类路径)
* @param key 属性键
* @return 属性值
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static String getValue(String propertyFilePath, String key) {
Properties ppts = getProperties(propertyFilePath);
return ppts == null ? null : ppts.getProperty(key);
}
/**
*
* 方法用途和描述: 获得属性文件中Key所对应的值
*
* @param propertyFilePath 属性文件路径(包括类路径或文件系统中文件路径)
* @param key 属性的键
* @param isAbsolutePath 是否为绝对路径:true|false〔即是本地文件系统路径,比如:C:/test.propreties〕 注:不能通过类路径来获取到属性文件,而只知道属性文件的文件系统路径,即文件系统地址则用此方法来获取其中的Key所对应的Value
* @return key的属性值
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static String getValue(String propertyFilePath, String key,
boolean isAbsolutePath) {
if (isAbsolutePath) {
Properties ppts = getPropertiesByFs(propertyFilePath);
return ppts == null ? null : ppts.getProperty(key);
}
return getValue(propertyFilePath, key);
}
/**
*
* 方法用途和描述: 获得属性文件的属性
*
* @param propertyFilePath 属性文件(包括类路径)
* @return 属性
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static Properties getProperties(String propertyFilePath) {
if (propertyFilePath == null) {
_log.error("propertyFilePath is null!");
return null;
}
Properties ppts = pptContainer.get(propertyFilePath);
if (ppts == null) {
ppts = loadPropertyFile(propertyFilePath);
if (ppts != null) {
pptContainer.put(propertyFilePath, ppts);
}
}
return ppts;
}
/**
*
* 方法用途和描述: 获得属性文件的属性
*
* @param propertyFilePath 属性文件路径(包括类路径及文件系统路径)
* @return 属性文件对象 Properties
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static Properties getPropertiesByFs(String propertyFilePath) {
if (propertyFilePath == null) {
_log.error("propertyFilePath is null!");
return null;
}
Properties ppts = pptContainer.get(propertyFilePath);
if (ppts == null) {
ppts = loadPropertyFileByFileSystem(propertyFilePath);
if (ppts != null) {
pptContainer.put(propertyFilePath, ppts);
}
}
return ppts;
}
/**
*
* 方法用途和描述: 加载属性
*
* @param propertyFilePath 属性文件(包括类路径)
* @return 属性
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
private static Properties loadPropertyFile(String propertyFilePath) {
java.io.InputStream is = PropertyEditor.class.getResourceAsStream(propertyFilePath);
if (is == null) {
return loadPropertyFileByFileSystem(propertyFilePath);
}
Properties ppts = new Properties();
try {
ppts.load(is);
return ppts;
} catch (Exception e) {
_log.debug("加载属性文件出错:" + propertyFilePath, e);
return null;
}
}
/**
*
* 方法用途和描述: 从文件系统加载属性文件
*
* @param propertyFilePath 属性文件(文件系统的文件路径)
* @return 属性
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
private static Properties loadPropertyFileByFileSystem(
final String propertyFilePath) {
try {
Properties ppts = new Properties();
ppts.load(new java.io.FileInputStream(propertyFilePath));
return ppts;
} catch (java.io.FileNotFoundException e) {
_log.error("FileInputStream(\"" + propertyFilePath + "\")! FileNotFoundException: " + e);
return null;
} catch (java.io.IOException e) {
_log.error("Properties.load(InputStream)! IOException: " + e);
return null;
}
}
/**
*
* 方法用途和描述: 对存在的属性文件中添加键值对并保存
*
* @param propertyFilePath 属性文件的路径(包括类路径及文件系统路径)
* @param htKeyValue 键值对Hashtable
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean setValueAndStore(String propertyFilePath,
java.util.Hashtable<String, String> htKeyValue) {
return setValueAndStore(propertyFilePath, htKeyValue, null);
}
/**
*
* 方法用途和描述: 对存在的属性文件中添加键值对并保存
*
* @param propertyFilePath 属性文件的路径(包括类路径及文件系统路径)
* @param htKeyValue 键值对Hashtable
* @param storeMsg 保存时添加的附加信息(注释)
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean setValueAndStore(String propertyFilePath,
java.util.Hashtable<String, String> htKeyValue, String storeMsg) {
Properties ppts = getProperties(propertyFilePath);
if (ppts == null || htKeyValue == null) {
return false;
}
ppts.putAll(htKeyValue);
java.io.OutputStream stream = null;
try {
stream = new java.io.FileOutputStream(propertyFilePath);
} catch (FileNotFoundException e) {
_log.debug("propertyFilePath = " + propertyFilePath);
String path = PropertyEditor.class.getResource(propertyFilePath).getPath();
_log.debug("~~~~~~~~path~~~XXX~~~~~" + path);
try {
stream = new java.io.FileOutputStream(path);
} catch (FileNotFoundException e1) {
_log.error("FileNotFoundException! path=" + propertyFilePath);
return false;
}
}
if (stream == null) {
return false;
}
try {
ppts.store(stream, storeMsg != null ? storeMsg : "set value and store.");
return true;
} catch (java.io.IOException e) {
e.printStackTrace();
return false;
} finally {
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
/**
*
* 方法用途和描述: 创建属性文件
*
* @param propertyFilePath 要存储属性文件的路径
* @param htKeyValue 属性文件中的键值对Hashtable
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean createPropertiesFile(String propertyFilePath, java.util.Hashtable<String, String> htKeyValue) {
java.io.File file = new java.io.File(propertyFilePath);
if (!file.exists()) {
try {
file.createNewFile();
} catch (java.io.IOException e) {
e.printStackTrace();
}
}
return setValueAndStore(propertyFilePath, htKeyValue, "create properties file:" + file.getName());
}
/**
*
* 方法用途和描述:设置属性值
*
* @param propertyFilePath 属性文件(包括类路径)
* @param key 属性键
* @param value 属性值
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean setValue(String propertyFilePath, String key, String value) {
Properties ppts = getProperties(propertyFilePath);
if (ppts == null) {
return false;
}
ppts.put(key, value);
return true;
}
/**
*
* 方法用途和描述: 保存属性文件对象
*
* @param properties 属性文件对象
* @param propertyFilePath 要保存的路径
* @param msg 保存时添加的附加信息(注释)
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static void store(Properties properties, String propertyFilePath, String msg) {
try {
java.io.OutputStream stream = new java.io.FileOutputStream(propertyFilePath);
properties.store(stream, msg);
} catch (java.io.FileNotFoundException e) {
_log.error("FileOutputStream(" + propertyFilePath + ")! FileNotFoundException: " + e);
} catch (java.io.IOException e) {
_log.error("store(stream, msg)! IOException: " + e);
e.printStackTrace();
}
}
/**
*
* 方法用途和描述: 删除属性值
*
* @param propertyFilePath
* 属性文件(包括类路径)
* @param key
* 属性键
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static String removeValue(String propertyFilePath, String key) {
Properties ppts = getProperties(propertyFilePath);
if (ppts == null) {
return null;
}
return (String) ppts.remove(key);
}
/**
*
* 方法用途和描述: 删除属性文件中的Key数组所对应的键值对
*
* @param propertyFilePath 属性文件路径(包括类路径及文件系统路径)
* @param key 数组
* @return 属性文件对象
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static Properties removeValue(String propertyFilePath, String[] key) {
if (key == null) {
_log.error("key[] is null!");
return null;
}
Properties ppts = getProperties(propertyFilePath);
if (ppts == null) {
return null;
}
for (String strKey : key) {
ppts.remove(strKey);
}
return ppts;
}
/**
*
* 方法用途和描述:删除属性文件中的Key数组所对应的键值对,并将属性文件对象持久化(即保存)
*
* @param propertyFilePath 属性文件路径(包括类路径及文件系统路径)
* @param key 属性文件中的key数组
* @return 成功与否(true|false)
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean removeValueAndStore(String propertyFilePath, String[] key) {
Properties ppts = removeValue(propertyFilePath, key);
if (ppts == null) {
return false;
}
store(ppts, propertyFilePath, "batch remove key value!");
return true;
}
/**
*
* 方法用途和描述: 更新指定路径的属性文件中的键所对应的值
*
* @param propertyFilePath 属性文件路径(包括类路径及文件系统路径)
* @param key 属性文件中的key
* @param newValue 要更新的新值
* @return 成功与否(true|false)
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean updateValue(String propertyFilePath, String key, String newValue) {
if (key == null || newValue == null) {
_log.error("key or newValue is null!");
return false;
}
java.util.Hashtable<String, String> ht = new java.util.Hashtable<String, String>();
ht.put(key, newValue);
return setValueAndStore(propertyFilePath, ht, "update " + key + "'s value!");
}
/**
*
* 方法用途和描述: 批量更新指定路径的属性文件中的键所对应的值
*
* @param propertyFilePath 属性文件路径(包括类路径及文件系统路径)
* @param htKeyValue 要更新的键值对Hashtable
* @return 成功与否(true|false)
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static boolean batchUpdateValue(String propertyFilePath, java.util.Hashtable<String, String> htKeyValue) {
if (propertyFilePath == null || htKeyValue == null) {
return false;
}
return setValueAndStore(propertyFilePath, htKeyValue, "batch update key value!");
}
/**
*
* 方法用途和描述: 移除加载的属性文件
*
* @param propertyFilePath 属性文件(包括类路径)
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static Properties removePropertyFile(String propertyFilePath) {
return pptContainer.remove(propertyFilePath);
}
/**
*
* 方法用途和描述: 重新加载某个Property文件
*
* @param propertyFilePath 要重新加载的Property文件,如果当前内存中没有的话则加载,否则替换
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static void reloadPropertyFile(String propertyFilePath) {
pptContainer.remove(propertyFilePath);
loadPropertyFile(propertyFilePath);
}
/**
*
* 方法用途和描述: 获得属性文件的路径
*
* @param pkg 包名
* @param propertyFileName 属性文件名
* @return
* @author yushibo 新增日期:2010-11-16
* @author yushibo 修改日期:2010-11-16
* @since wapportal_manager version(2.0)
*/
public final static String getPpropertyFilePath(String pkg, String propertyFileName) {
pkg = pkg == null ? "" : pkg.replaceAll("\\.", "/");
propertyFileName = propertyFileName.endsWith(".properties") ? propertyFileName : (propertyFileName + ".properties");
return "/" + pkg + "/" + propertyFileName;
}
public static void main(String[] args) {
String path = "/dbRangeMap.properties";
String value = PropertyEditor.getValue(path, "jdbc.ip");
System.out.println("value = " + value);
// _log.info("value = " + value);
// Hashtable</string><string , String> ht = new Hashtable</string><string , String>();
// ht.put("name", "dengcd");
// PropertyReader.setValueAndStore(path, ht);
// String v_ = PropertyReader.getValue(path, "name");
// _log.info("value1 = " + v_);
// PropertyReader.reloadPropertyFile(path);
// String v2_ = PropertyReader.getValue(path, "name");
// _log.info("value2 = " + v2_);
}
}
分享到:
相关推荐
在 Java 应用程序中,`.properties` 文件一般存放在类路径 (classpath) 下,特别是放在工程项目的 `class` 包下。这样,Java 运行时环境可以轻松地找到并加载这些文件。 2. **获取资源文件** 有两种主要方法来...
总的来说,Java中的`.properties`文件是存储配置信息的有效方式,通过`Properties`类提供的API,我们可以方便地读取、修改和保存这些配置信息。在处理这类文件时,理解类路径、资源加载方式以及`Properties`类的方法...
在Java开发中,`properties` 文件是用于存储配置信息的关键组件,它们通常包含键值对,便于程序在运行时读取和使用。Eclipse作为一款强大的Java集成开发环境(IDE),虽然内置了一些基本的文本编辑功能,但在处理`....
Java Properties是Java编程语言中用于处理配置文件的关键类,它主要用于存储和加载键值对,这些键值对可以在程序运行时被读取和修改。在Java工程中,Properties类经常被用来管理应用程序的配置参数,如数据库连接...
### Java工程中资源文件的用法详解 #### 概述 资源文件,通常指的是`.properties`文件,这类文件采用键值对的形式存储数据,广泛应用于Java项目中存储配置信息、国际化字符串等。通过使用`java.util.Properties`类...
如果你想要从这个Java文件读取`yyy.properties`,假设它位于`src\env`目录,那么正确的相对路径应该是`./src/env/yyy.properties`。这里,`.`代表当前目录,也就是`src\come\home\basic`,然后你向这个目录添加相对...
对于其他语言,如Java,有`java.util.Properties`处理.properties文件,或者`javax.xml.bind`包处理XML。 为了确保配置文件的安全性,开发人员还需要考虑加密存储敏感信息,比如密码和API密钥。此外,配置文件版本...
本篇将详细介绍如何在Java中创建和读取资源文件,以及使用提供的`KeyValueUtils.java`和`KeyValue.java`类来操作键值对资源文件。 首先,资源文件通常存放在项目的`src/main/resources`目录下,在Maven或Gradle等...
4. **修改配置文件**:在Java工程中,需要特别关注`.properties`、`.xml`等配置文件,它们通常会保存项目编码信息。例如,`pom.xml`中的`<project.build.sourceEncoding>`元素,以及IDE的配置文件(如MyEclipse的`....
4. **配置文件**:如`.properties`,用于存储系统配置或本地化信息。 5. **资源文件**:如图片、数据库连接字符串等。 6. **文档**:可能包括README文件,介绍如何运行和使用系统,或者设计文档,解释系统架构和功能...
- **.classpath**:Eclipse项目的类路径配置文件。 这些文件和目录表明,这是一个Android工程的源代码结构,其中可能包含了实现NFC读写功能的相关代码。开发者可能需要分析`src`目录下的Java类,查找与NFC相关的类...
1. **创建资源文件**:定义多个语言版本的资源文件,如`ApplicationResource.properties`(默认语言)、`ApplicationResource_zh_CN.properties`(中文版)等。 2. **资源文件内容**:在资源文件中,使用键值对形式...
3. **配置文件**:如`.properties`,用于存储系统配置信息,如数据库连接参数。 4. **测试代码**:`.java`测试文件,用于验证功能的正确性,可能使用JUnit或其他测试框架。 5. **README.md**:通常包含项目介绍、...
2. **.classpath**:这个文件记录了项目中的类路径,包括依赖的库和编译时需要的资源,它是Eclipse或Android Studio等IDE构建项目时的重要配置。 3. **.project**:这是Eclipse项目的配置文件,包含了项目的基本...
"Java工程读取resources中资源文件路径的问题" 在Java工程中,读取resources中资源文件路径的问题是一个常见的问题。下面我们将详细讲解如何正确地读取资源文件路径。 绝对路径和相对路径 在Java工程中读取某路径...