java多个类共⽤属性_java中读写Properties属性⽂件公⽤⽅法
详解
前⾔
⼤家都知道Java中有个⽐较重要的类Properties(Java.util.Properties),主要⽤于读取Java的配置⽂件,各种语⾔都有⾃⼰所⽀持的配置⽂件,配置⽂件中很多变量是经常改变的,这样做也是为了⽅便⽤户,让⽤户能够脱离程序本⾝去修改相关的变量设置。像Python⽀持的配置⽂件是.ini⽂件,同样,它也有⾃⼰读取配置⽂件的类ConfigParse,⽅便程序员或⽤户通过该类的⽅法来修改.ini配置⽂件。在Java 中,其配置⽂件常为.properties⽂件,格式为⽂本⽂件,⽂件的内容的格式是“键=值”的格式,⽂本注释信息可以⽤"#"来注释。
它提供了⼏个主要的⽅法:
1. getProperty ( String key) , ⽤指定的键在此属性列表中搜索属性。也就是通过参数 key ,得到 key 所对应的 value。
2. load ( InputStream inStream),从输⼊流中读取属性列表(键和元素对)。通过对指定的⽂件(⽐如说上⾯的 test.properties ⽂件)进⾏装载来获取该⽂件中的所有键 - 值对。以供 getProperty ( String key)来
搜索。
3. setProperty ( String key, String value) ,调⽤ Hashtable 的⽅法 put 。他通过调⽤基类的put⽅法来设置 键 - 值对。
4. store ( OutputStream out, String comments),以适合使⽤ load ⽅法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素对)写⼊输出流。与 load ⽅法相反,该⽅法将键 - 值对写⼊到指定的⽂件中去。
5. clear (),清除所有装载的 键 - 值对。该⽅法在基类中提供。
如下⽰例代码提供了⼀套读写配置⽂件的公⽤实⽤⽅法,可以根据⾃⼰的项⽬进⾏引⼊:
package com.javacui.lucene.jdbc;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
金花站长工具import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import java.util.Properties;
import org.apache.log4j.Logger;
public class PropertieUtil {
private static Logger logger = Logger(PropertieUtil.class);
private PropertieUtil() {
}
/**
* 读取配置⽂件某属性
*/
public static String readValue(String filePath, String key) {
Properties props = new Properties();
try {
// 注意路径以 / 开始,没有则处理
if (!filePath.startsWith("/"))
filePath = "/" + filePath;
InputStream in = ResourceAsStream(filePath);
props.load(in);
String value = Property(key);
return value;
} catch (Exception e) {
<(e);
return null;
}
}
/**
* 打印配置⽂件全部内容(filePath,配置⽂件名,如果有路径,props/test.properties) */
public static void readProperties(String filePath) {
Properties props = new Properties();
win搭建v2raynavicat执行存储过程try {
// 注意路径以 / 开始,没有则处理
if (!filePath.startsWith("/"))
filePath = "/" + filePath;
InputStream in = ResourceAsStream(filePath);
props.load(in);
Enumeration> en = props.propertyNames();
// 遍历打印
while (en.hasMoreElements()) {
String key = (String) en.nextElement();
String Property = Property(key);
logger.info(key + ":" + Property);
}
} catch (Exception e) {
<(e);
}
}
/**
卡通ppt免费模板* 将值写⼊配置⽂件
*/
public static void writeProperties(String fileName, String parameterName, String parameterValue) throws Exception {
// 本地测试特别注意,如果是maven项⽬,请到\target⽬录下查看⽂件,⽽不是源代码下
numeric cell什么意思
// 注意路径不能加 / 了,加了则移除掉
if (fileName.startsWith("/"))
fileName.substring(1);
String filePath = Resource("/").getPath()+fileName;
// 获取配置⽂件
Properties pps = new Properties();
InputStream in = new BufferedInputStream(new FileInputStream(filePath));
pps.load(in);
in.close();
OutputStream out = new FileOutputStream(filePath);
// 设置配置名称和值
pps.setProperty(parameterName, parameterValue);
// comments 等于配置⽂件的注释
pps.store(out, "Update " + parameterName + " name");
out.flush();
out.close();
}
public static void main(String[] args) throws Exception {
readProperties("jdbc.properties");
// logger.info(readValue("jdbc.properties", "JAVABLOG_WRITE_URL"));
// writeProperties("test.properties", "test", "test");
}
}
总结
properties是什么文件以上就是关于java读写Properties属性⽂件公⽤⽅法的全部内容了,希望本⽂的内容对⼤家的学习或者⼯作能带来⼀定的帮助,如果有疑问⼤家可以留⾔交流。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。