Java Properties类解读

Properties 类简介

Properties 类可以保存持久的属性,这些属性可以保存在流(Stream)里面或者从流里面读取出来。每一个键值对的键或者值都是一个字符串。

Properties 类通常可以在 Java 中用于读取配置信息,对代码相关配置进行解耦合。配置信息通常存放于扩展名为 .properties 的文件中。

Properties 类常用方法:

  • setProperty(String key, String value)虽然 Properties 继承了 HashTable,可以直接使用 HashTableput 相关方法,但是这些方法都是泛型的,可能造成的一个后果就是存储的键值对的键或者值都不是字符串而抛出异常。
  • getProperty(String key)
  • getProperty(String key, String defaultValue)
  • load(InputStream inStream)从指定的输入流中读取属性列表到调用的对象中去,输入流是一个简单的面向行的格式。
  • load(Reader reader)
  • loadFromXML(InputStream in)
  • store(OutputStream out, String comments)将当前对象中的所有属性列表全部以一个适当的形式全部写进一个输出流中,并且需要添加注释。
  • store(Writer writer, String comments)
  • storeToXML(OutputStream os, String comments)
  • storeToXML(OutputStream os, String comments, String encoding)
  • list(PrintStream out)将当前对象中的所有属性列表全部展示在输出流中。

示例代码:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;

public class LearnProperties {

    public static void main(String[] args) throws FileNotFoundException, IOException {
        Properties properties = new Properties();
        String path = "D:\\Property";
        properties.setProperty("key1", "value1");
        properties.setProperty("key2", "value2");
        properties.setProperty("key3", "value3");
        System.out.println(properties.getProperty("key1", "NoSuchKey"));
        System.out.println(properties.getProperty("key4", "NoSuchKey"));
        properties.store(new FileOutputStream(path + ".properties"), "Properties for Test");
        properties.storeToXML(new FileOutputStream(path + ".xml"), "Properties for Test");
        System.out.println(properties.stringPropertyNames());
        properties.clear();
        System.out.println(properties.stringPropertyNames());
        properties.load(new FileInputStream(path + ".properties"));
        System.out.println(properties.stringPropertyNames());
        properties.clear();
        properties.loadFromXML(new FileInputStream(path + ".xml"));
        System.out.println(properties.stringPropertyNames());
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值