java基础---->java中Properties的使用
Java中有个比较重要的类Properties(Java.util.Properties),主要用于读取Java的配置文件,各种语言都有自己所支 持的配置文件,配置文件中很多变量是经常改变的,这样做也是为了方便用户,让用户能够脱离程序本身去修改相关的变量设置。今天,我们就开始Properties的使用。
Java中Properties的使用
Properties的文档说明:
The Properties class represents a persistent set of properties. The Properties can be saved to a stream or loaded from a stream. Each key and its corresponding value in the property list is a string.
Properties类的描述:
public class Properties extends Hashtable<Object,Object>
测试的项目结构如下:
一、在huhx.properties文件中,我们为也方便,加入一条数据:
name=huhx
二、将huhx.properties文件加载读取,得到相应的属性
Properties properties = new Properties(); FileInputStream fis = new FileInputStream("huhx.properties"); properties.load(fis); System.out.println(properties.get("name"));
properties.load()执行之后,fis.close方法对于properties.get(key)没有什么影响。因为load方法已经将数据解析读取到了Property中。
三、Properties的list方法的使用
PrintStream printStream = System.out;
properties.list(printStream);
list方法的具体代码:
public void list(PrintStream out) { out.println("-- listing properties --"); Hashtable h = new Hashtable(); enumerate(h); for (Enumeration e = h.keys() ; e.hasMoreElements() ;) { String key = (String)e.nextElement(); String val = (String)h.get(key); if (val.length() > 40) { val = val.substring(0, 37) + "..."; } out.println(key + "=" + val); } }
四、Properties的store方法的使用
OutputStream outputStream = new FileOutputStream("huhx.txt"); properties.store(outputStream, "comments");
五、Properties的storeToXML方法的使用
OutputStream outputStream2 = new FileOutputStream("huhx.xml"); properties.storeToXML(outputStream2, "comments");
六、最终生成的文件如下:
huhx.txt:
#comments #Thu May 19 19:19:36 CST 2016 name=huhx
huhx.xml:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> <comment>comments</comment> <entry key="name">huhx</entry> </properties>
PropertiesTest.java:

package com.huhx.linux; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.OutputStream; import java.io.PrintStream; import java.util.Properties; public class PropertiesTest { public static void main(String[] args) throws Exception { // 一般Properties的使用 Properties properties = new Properties(); FileInputStream fis = new FileInputStream("huhx.properties"); properties.load(fis); System.out.println(properties.get("name")); // 以下是测试的部分 PrintStream printStream = System.out; properties.list(printStream); OutputStream outputStream = new FileOutputStream("huhx.txt"); properties.store(outputStream, "comments"); OutputStream outputStream2 = new FileOutputStream("huhx.xml"); properties.storeToXML(outputStream2, "comments"); } }
七、属性文件中占位符的使用
huhx的文件内容如下:
word=I loves {0} and {1}
java的代码如下:
String word = properties.getProperty("word"); String lovesWord = MessageFormat.format(word, "android", "linux"); System.out.println(lovesWord); // I loves android and linux
友情链接
作者:
huhx
出处: www.cnblogs.com/huhx
格言:你尽力了,才有资格说自己的运气不好。
版权:本文版权归作者huhx和博客园共有,欢迎转载。未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
出处: www.cnblogs.com/huhx
格言:你尽力了,才有资格说自己的运气不好。
版权:本文版权归作者huhx和博客园共有,欢迎转载。未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· ShadowSql之.net sql拼写神器
· Excel百万数据如何快速导入?
· 无需WebView,Vue也能开发跨平台桌面应用