`

Properties属性文件的读、写

    博客分类:
  • java
阅读更多

在我们平时写程序的时候,有些参数是经常改变的,而这种改变不是我们预知的。比如说我们开发了一个操作数据库的模块,在开发的时候我们连接本地的数据库那么 IP ,数据库名称,表名称,数据库主机等信息是我们本地的,要使得这个操作数据的模块具有通用性,那么以上信息就不能写死在程序里。通常我们的做法是用配置文件来解决。

各种语言都有自己所支持的配置文件类型。比如 Python ,他支持 .ini 文件。因为他内部有一个 ConfigParser 类来支持 .ini 文件的读写,根据该类提供的方法程序员可以自由的来操作 .ini 文件。而在 Java 中, Java 支持的是 .properties 文件的读写。 JDK 内置的 java.util.Properties 类为我们操作 .properties 文件提供了便利。

# 开始的一行为注释信息;在等号“ = ”左边的我们称之为 key ;等号“ = ”右边的我们称之为 value 。(其实就是我们常说的键 - 值对) key 应该是我们程序中的变量。而 value 是我们根据实际情况配置的。


1. JDK 中的 Properties 类 Properties 类存在于胞 Java.util 中,该类继承自 Hashtable ,它提供了几个主要的方法: 1.getProperty ( String  key) ,用指定的键在此属性列表中搜索属性。也就是通过参数 key ,得到 key 所对应的 value 。
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 () ,清除所有装载的 键 - 值对。该方法在基类中提供。
有了以上几个方法我们就可以对 .properties 文件进行操作了!


test.properties属性文件,放在classes类路径下,通过this.getClass().getResource("/")得到类路径

save.properties属性文件,是程序生成的属性文件,放在项目路径下

 

public class TestProperties {
	 private Properties properties;
	 private FileInputStream inputFile;
	 private FileOutputStream outputFile;
	 
	/**
	 * 初始化TestProperties类
	 */
	public TestProperties(){}
	
	/**
	 * 初始化TestProperties类
	 * @param fileName 要读取的配置文件的路径+名称
	 */
	public TestProperties(String fileName){
		properties = new Properties();
		try{			
			inputFile = new FileInputStream(this.getClass().getResource("/").getPath() + fileName);			
			properties.load(inputFile);
			inputFile.close();
		}catch(FileNotFoundException ex){
			System.out.println("读取属性文件--->失败!- 原因:文件路径错误或者文件不存在");
			ex.printStackTrace();
		}catch(IOException ex){
			System.out.println("装载文件--->失败!");
			ex.printStackTrace();
		}
	}
	
	/**
	 * 重载函数,得到key的值
	 * @param  key取得其值的键
	 * @return key的值
	 */
	public String getValue(String key){
		if(properties.containsKey(key)){
			String value = properties.getProperty(key);
			return value;
		}else{
			return null;
		}
	}
	/**
	 * 重载函数,得到key的值
	 * @param fileName properties文件的路径+文件名
	 * @param  key取得其值的键
	 * @return key的值
	 */
	public String getValue(String fileName, String key){
		try{
			String value = null;
            inputFile = new FileInputStream(fileName);
            properties.load(inputFile);
            inputFile.close();
            if(properties.containsKey(key)){
                value = properties.getProperty(key);
                return value;
            }else
                return value;
		}catch (FileNotFoundException e){
            e.printStackTrace();
            return null;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        } catch (Exception ex){
            ex.printStackTrace();
            return null;
        }
	}
	/**
	 * 改变或添加一个key的值,当key存在于properties文件中时该key的值被value所代替,
	 * 当key不存在时,该key的值是value
	 * @param key 要存入的键
	 * @param value 要存入的值
	 */
	public void setValue(String key, String value){
		properties.setProperty(key, value);
	}
	/**
	 * 将更改后的文件数据存入指定的文件中,该文件可以事先不存在。
	 * @param fileName 文件路径+文件名称
	 * @param description 对该文件的描述
	 */
	public void saveFile(String fileName, String description){
        try {
            outputFile = new FileOutputStream(fileName);
            properties.store(outputFile, description);
            outputFile.close();
        } catch (FileNotFoundException e){
            e.printStackTrace();
        } catch (IOException ioe){
            ioe.printStackTrace();
        }
    }
	
	
	/**
	 * 清除properties文件中所有的key和其值
	 */
	public void clear(){
		properties.clear();
	}
	
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		TestProperties testProperties = new TestProperties("test.properties");
		//以下读取properties文件的值
		String ip = testProperties.getValue("ip");
		String host = testProperties.getValue("DatabasePort");
		String table = testProperties.getValue("DatabaseTable");
		System.out.println("=====E:/work/workbench/TEST/test/bin/test.properties=====");
		System.out.println("ip = " + ip);
		System.out.println("host = " + host);
	    System.out.println("table = " + table);	    
	    
	    System.out.println("=====E:/work/workbench/TEST/test/save.properties=====");
	    String fileName = "save.properties";	    
	    testProperties.clear();
	    testProperties.setValue("min", "999");
	    testProperties.setValue("max", "1000");
	    testProperties.saveFile(fileName, "Test outFileStream");	    
	    System.out.println(testProperties.getValue(fileName, "min"));
	    System.out.println(testProperties.getValue(fileName, "max"));
	}

}
分享到:
评论

相关推荐

    Python实现读取Properties配置文件的方法

    主要介绍了Python实现读取Properties配置文件的方法,结合实例形式分析了Python读取Properties配置文件类的定义与使用相关操作技巧,需要的朋友可以参考下

    Properties文件读写;Property文件读写;Property

    读/写属性文件的工具类. PropertyUtil.java对Property文件读写进行了封装, 使开发人员对Property文件的读写更加容易。 在性能、实用性 方面还是可以的。

    properties:Node.js的属性读取器

    属性阅读器用于与ini文件兼容的属性阅读器安装最简单的安装是通过 : npm install properties-reader原料药从文件读取属性: var propertiesReader = require('properties-reader');var properties = ...

    读取properties文件>>propertiesUtil工具类

    最近面试java开发,遇到很是蛋疼一道题。题目是写一个java程序批量读取properties文件的数据,按照每列属性每行每行读出来,由于很久都没写过工具类 回来复习了一下简单写了个工具类有兴趣可以看看。

    如何编写批处理文件批处理文件批处理文件

    %~aI - 将 %I 扩充到文件的文件属性 %~tI - 将 %I 扩充到文件的日期/时间 %~zI - 将 %I 扩充到文件的大小 %~$PATH:I - 查找列在路径环境变量的目录,并将 %I 扩充 到找到的第一个完全合格的名称。如果环境变量 ...

    ctop:Cassandra顶部(适用于Cassandra 2.x和3.x)

    这是一个非常简单的控制台工具,用于监视远程cassandra主机上的列系列读/写活动。 您可以看到哪些列族几乎实时地对磁盘利用率产生最大影响。 用法 不使用属性文件时, java -jar ctop.jar <host> <key> [interval_...

    MicrosoftHTMLHelpWorkshopV1.3汉化版.rar

    下面介绍制作简单的 chm 文件(无导航功能)的步骤,这些步骤的叙述将在“制作较复杂 chm 文件”中省略或简化,所以不可不读。 1、制作没有功能按钮的 chm 文件 首先你最好把所有要用到的 html 文件及有关...

    python读取Android permission文件

    今天用python解析一个文本文件,格式如下:复制代码 代码如下:[ { “Key”:”android.permission.ACCESS_CHECKIN_PROPERTIES”, “Title”:”访问检入属性”, “Memo”:”允许对检入服务上传的属性进行读/写访问...

    java-bom-generator

    此外,还需要安装Maven(TODO)配置必须通过克隆模板文件/src/main/resources/config.template.properties并正确填充属性,在文件/src/main/resources/config.properties设置项目的配置。 特别是: projectPath :...

    基于Dubbo实现的SOA分布式(没有实现分布式事务)-SpringBoot整合各种组件的JavaWeb脚手架+源代码+文档

    6. 引用application.properties中的属性的方式:@ConfigurationProperties(prefix = "spring.mail") + @Component + setter + getter 7. 引用其他自定义配置文件中的属性的方式: - @Component - ## 项目备注 1...

    R软件代码转换为matlab-happly:用于PLY文件格式的C++仅标头解析器。高兴地解析.ply!

    R软件代码转换为matlab 快乐地 PLY文件格式的仅标头C ++读取器/写入器。 高兴地解析.ply! 特征: ...顶点具有“位置”和“颜色”之类的属性,而面具有作为顶点索引列表的属性。 hapPLY公开了用于读

    Java JDK实例宝典

    13 Properties属性文件 第5章 字符串 5. 1 使用String 5. 2 基本数据类型与字符串的转化 5. 3 判断Java标识符 5. 4 使用StringBuffer 5. 5 IP地址转化成整数 5. 6 18位身份证格式验证 ...

    Hibernate 中文 html 帮助文档

    19.2.4. 策略:非严格读/写缓存(Strategy: nonstrict read/write) 19.2.5. 策略:事务缓存(transactional) 19.3. 管理缓存(Managing the caches) 19.4. 查询缓存(The Query Cache) 19.5. 理解集合性能...

    Hibernate_3.2.0_符合Java习惯的关系数据库持久化

    19.2.4. 策略:非严格读/写缓存(Strategy: nonstrict read/write) 19.2.5. 策略:事务缓存(transactional) 19.3. 管理缓存(Managing the caches) 19.4. 查询缓存(The Query Cache) 19.5. 理解集合性能...

    CuteFTP9简易汉化版

    文件Properties-View或更改权限(CHMOD)多个文件,而不必知道它们的数值通过简单地选择是否读、写或执行允许为每个组。查看文件和文件夹大小,日期,老板的价值观等等。 时间戳Control-Preserve服务器下载的文件的时间戳...

    ssh(structs,spring,hibernate)框架中的上传下载

    //将某个文件的文件数据写出到输出流中 6. String getFileName(String fileId);//获取文件名 7. }  其中save(FileActionForm fileForm)方法,将封装在fileForm中的上传文件保存到数据库中,这里我们使用...

    HibernateAPI中文版.chm

    19.2.4. 策略:非严格读/写缓存(Strategy: nonstrict read/write) 19.2.5. 策略:事务缓存(transactional) 19.3. 管理缓存(Managing the caches) 19.4. 查询缓存(The Query Cache) 19.5. 理解集合性能...

    hibernate3.2中文文档(chm格式)

    19.2.4. 策略:非严格读/写缓存(Strategy: nonstrict read/write) 19.2.5. 策略:事务缓存(transactional) 19.3. 管理缓存(Managing the caches) 19.4. 查询缓存(The Query Cache) 19.5. 理解集合性能...

    Hibernate+中文文档

    19.2.4. 策略:非严格读/写缓存(Strategy: nonstrict read/write) 19.2.5. 策略:事务缓存(transactional) 19.3. 管理缓存(Managing the caches) 19.4. 查询缓存(The Query Cache) 19.5. 理解集合性能...

    Spring.net框架

    我们的Factory就是利用这种方式根据配置文件动态加载程序集,动态创建对象并设置属性的。有了这个Factory,MainApp中的内容就很简单了: using System; namespace IocInCSharp { public class MainApp { public ...

Global site tag (gtag.js) - Google Analytics