java 操作 properties_如何使用Java实现操作 Properties 文件

如何使用Java实现操作 Properties 文件

发布时间:2020-11-10 15:31:47

来源:亿速云

阅读:81

作者:Leah

本篇文章为大家展示了如何使用Java实现操作 Properties 文件,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

Java 对 Properties 文件的操作

简介

在 Java 中,我们常用 java.util.Properties.Properties 类来解析 Properties 文件,Properties 格式文件是 Java 常用的配置文件,它用来在文件中存储键-值对,其中键和值用等号分隔,格式如下:

name=shawearn

Properties 类是 java.util.Hashtable 的子类,用于键和值之间的映射。

在对 Properties 格式文件的操作中,我们常使用 Properties 类的一下方法:

Properties():用于创建一个无任何属性值 Properties 对象;void load(InputStream inStream):从输入流中加载属性列表;

void store(OutputStream out, String comments):根据输出流将属性列表保存到文件中;

String  getProperty(String key):获取指定键的值;

void setProperty(String key, String value):设置指定键的值,若指定键已经在原属性值列表中存在,则覆盖;若指定键在原属性值列表中不存在,则新增;

写入 Properties 文件:

// 创建一个 Properties 实例;

Properties p = new Properties();

// 为 Properties 设置属性及属性值;

p.setProperty("name", "shawearn");

p.setProperty("address", "XX 省 XX 市");

// 保存 Properties 到 shawearn.properties 文件中;

FileOutputStream out = new FileOutputStream("shawearn.properties");

p.store(out, "Create by Shawearn!");

out.close();

读取 Properties 文件:

// 创建一个 Properties 实例;

Properties p = new Properties();

// 读取配置文件;

FileInputStream in = new FileInputStream("shawearn.properties");

// 加载配置文件到 Properties 实例中;

p.load(in);

in.close();

最后附上测试代码:

package com.shawearn.test;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.Properties;

import java.util.Set;

/**

* @author Shawearn

*

*/

public class TestProperties {

/**

* @param args

* @throws IOException

*/

public static void main(String[] args) throws IOException {

TestProperties t = new TestProperties();

// 测试写入;

t.testWrite();

// 测试读取;

t.testRead();

}

/*

* 测试对 Properties 文件的写入操作;

*/

private void testWrite() throws IOException {

// 创建一个 Properties 实例;

Properties p = new Properties();

// 为 Properties 设置属性及属性值;

p.setProperty("name", "shawearn");

p.setProperty("address", "XX 省 XX 市");

// 保存 Properties 到 shawearn.properties 文件中;

FileOutputStream out = new FileOutputStream("shawearn.properties");

p.store(out, "Create by Shawearn!");

out.close();

System.out.println("写入成功!");

}

/*

* 测试对 Properties 文件的读取操作;

*/

private void testRead() throws IOException {

// 创建一个 Properties 实例;

Properties p = new Properties();

// 读取配置文件;

FileInputStream in = new FileInputStream("shawearn.properties");

// 加载配置文件到 Properties 实例中;

p.load(in);

in.close();

// 获取 Properties 文件中所有的 key;

Set keys = p.stringPropertyNames();

// 遍历所有的 key;

for (String key : keys) {

// 获取 Properties 文件中 key 所对应的 value;

Object value = p.get(key);

// 输入 key 和对应的 value;

System.out.println(key + " => " + value);

}

}

}

控制台输出结果:

address => XX 省 XX 市

name => shawearn

shawearn.properties 文件内容:

#Create by Shawearn!

#Thu Nov 19 12:43:41 CST 2015

name=shawearn

address=XX \u7701 XX \u5E02

上述内容就是如何使用Java实现操作 Properties 文件,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值