首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

Properties 种读取xml 和属性文件的方法

2012-12-21 
Properties 类读取xml 和属性文件的方法不经意看到Properties 这个类,一直以为某个jar包里的,没发现是hash

Properties 类读取xml 和属性文件的方法

不经意看到Properties 这个类,一直以为某个jar包里的,没发现是hashtable的子类,于是看了一下读取文件的方法。

读取xml:

                                               Properties pro=new Properties();pro.loadFromXML(new FileInputStream(new File("D:/projects/test/src/xmlread/root.xml")));String root=pro.getProperty("root");System.out.println(root);pro.load(new FileInputStream(new File("D:/projects/test/src/xmlread/top.properties")));String username=pro.getProperty("username");System.out.println(username);

?xml的格式必须符合一下格式,不是随便写节点就行的。

<?xml version="1.0" encoding="utf-8" ?><!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"><properties><comment>xml</comment><entry key="root">test the properties</entry></properties>

属性文件:

username=ssg

??

?

?

热点排行