zoukankan      html  css  js  c++  java
  • Properties的读取和写入

    Properties的读取和写入

    Properties是HashTable下的一个持久的属性集,没有泛型,key-value都是String类型。由于能与IO流结合使用,所以能方便地操作属性文件或者xml文件。

    一.properties读取配置文件,并输出到控制台:

    1 Properties properties = new Properties();
    2 FileReader fr = new FileReader("ltn.properties");
    3 properties.load(fr);
    4 fr.close();
    5 //输出 
    6 properties.list(System.out);

    二.properties集合数据写入配置文件:

    Properties pro = new Properties();
    pro.setProperty("key1", "value1");
    pro.setProperty("key2", "value2");
    FileWriter fw = new FileWriter("ltn.properties");
    pro.store(fw, "key-value");    //key-value:对属性文件的描述
    fw.close();
    ltn.properties:
    #key-value
    #Mon Dec 16 23:16:18 CST 2013
    key2=value2
    key1=value1

    三.properties读取xml:

    loadFromXML将XML 文档所表示的所有属性加载到此属性表中,但xml文档中必须申明

     <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">

    并且xml格式也必须满足dtd的要求。

    1.properties.xml如下:

    复制代码
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
    <properties version="1.0">
    <comment>Properties读取xml</comment>
    <entry key="username">xyy</entry>
    <entry key="pwd">123456</entry>
    </properties>
    复制代码

    2.读取xml:

    Properties properties = new Properties();
    FileInputStream fis = new FileInputStream("properties.xml");
    properties.loadFromXML(fis);
    fis.close();
    properties.list(System.out);

    3.输出:

    -- listing properties --
    pwd=123456
    username=xyy

    四.将properties集合数据写入xml文件:

    1.写入:

    Properties properties = new Properties();
    properties.setProperty("username", "xyy");
    properties.setProperty("pwd", "123456");
    FileOutputStream fos = new FileOutputStream("properties2.xml");
    properties.storeToXML(fos,"key-value");
    fos.close();

    2.生成xml:

    复制代码
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
    <properties>
    <comment>key-value</comment>
    <entry key="pwd">123456</entry>
    <entry key="username">xyy</entry>
    </properties>
    复制代码
     
     
     
    标签: java
  • 相关阅读:
    043 抖音短视频爬取实战
    048 Python里面yield的实现原理
    047 Python面试知识点小结
    001 Glang实现简单分布式缓存
    046 算法的时间复杂度和空间复杂度计算
    042 使用Python远程监视多个服务器和数据库的状态,python,监控,同步
    041基于python实现jenkins自动发布代码平台
    045 chrome浏览器前端调试技巧
    STL学习
    Asio与Boost.Asio
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/3477714.html
Copyright © 2011-2022 走看看