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的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"); } }
以上所述是小编给大家介绍的Java中Properties的使用详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
- 详解使用jquery.i18n.properties 实现web前端国际化
- 基于jQuery.i18n实现web前端的国际化
- java读取properties配置文件的方法
- Java遍历Properties所有元素的方法实例
- java获取properties属性文件示例
- Java读取properties配置文件时,出现中文乱码的解决方法
- 详解五种方式让你在java中读取properties文件内容不再是难题
- java遍历properties文件操作指南
- ajax读取properties资源文件数据的方法
- Java中的几种读取properties配置文件的方式
- 详解使用jQuery.i18n.properties实现js国际化
相关文章
SpringMVC访问controller报错404的解决办法(总结超详细)
纯注解配置SpringMVC程序,使用tomcat8.5.95版本启动,能启动成功并且访问index.jsp页面,但是访问/save时出现404无法访问,本文给大家介绍了SpringMVC访问controller报错404的解决办法,文章总结的非常详细,需要的朋友可以参考下2024-05-0530w+数据使用RedisTemplate pipeline空指针NullPointerException异常分析
这篇文章主要为大家介绍了30w+数据使用RedisTemplate pipeline空指针NullPointerException异常分析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-08-08@ConfigurationProperties在IDEA中出现红色波浪线问题解决方法
本文介绍了在Springboot项目中,当@ConfigurationProperties注解出现红色波浪线时的解决方法,文中有详细的解决方案供大家参考,需要的朋友可以参考下2024-09-09
最新评论