浏览 9011 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-06-12
最后修改:2009-05-18
Spike.java import java.io.IOException; import java.io.InputStream; import java.util.Enumeration; import java.util.Properties; public class Spike { public static void main(String[] args) throws Exception { readProperties(); System.out.println("=================================================="); readXml(); } private static void readProperties() throws IOException { Properties props = new Properties(); InputStream inStream = Spike.class.getResourceAsStream("Mock.properties"); props.load(inStream); Enumeration enums = props.propertyNames(); while (enums.hasMoreElements()) { String key = (String) enums.nextElement(); System.out.println("Property--->>>>[" + key + "] " + "Value--->>>>" + props.getProperty(key)); } } private static void readXml() throws IOException { Properties props = new Properties(); InputStream inStream = Spike.class.getResourceAsStream("Mock.xml"); props.loadFromXML(inStream); Enumeration enums = props.propertyNames(); while (enums.hasMoreElements()) { String key = (String) enums.nextElement(); System.out.println("Property--->>>>[" + key + "] " + "Value--->>>>" + props.getProperty(key)); } } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-06-12
嗯嗯, xml是要清楚多了。
但是< >需要放在CDDTA里面的,同样也要要注意的字符。 |
|
返回顶楼 | |
发表时间:2008-06-13
呵呵,是要用CDATA啦,不是CDDTA了。 <![CDATA[]]>
|
|
返回顶楼 | |