java.util.Properties.storeToXML()方法實例
java.util.Properties.storeToXML(OutputStream osString comment) 方法發出代表所有包含在此表中的屬性的XML文檔。形式如props.storeToXML(os, comment) 這個方法的調用以完全相同的方式表現為調用props.storeToXML(os, comment, "UTF-8");
聲明
以下是java.util.Properties.storeToXML()方法的聲明
public void storeToXML(OutputStream os,String comment)
參數
-
out -- 根據其內容發出XML文檔的輸出流。
-
comments -- 屬性列表,或者為null的描述,如果冇有所需的注釋。
返回值
這個方法冇有任何返回值
異常
-
IOException -- 如果將此屬性列表寫入到指定的輸出流拋出一個IOException異常。
-
ClassCastException -- 如果此Properties對象包含不屬於任何字符串鍵或值。
-
NullPointerException -- 如果 out 為 null.
例子
下麵的示例演示java.util.Properties.storeToXML()方法的用法。
package com.yiibai; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.*; public class PropertiesDemo { public static void main(String[] args) { Properties prop = new Properties(); // add some properties prop.put("Height", "200"); prop.put("Width", "15"); try { // create a output and input as a xml file FileOutputStream fos = new FileOutputStream("properties.xml"); FileInputStream fis = new FileInputStream("properties.xml"); // store the properties in the specific xml prop.storeToXML(fos, "Properties Example"); // print the xml while (fis.available() > 0) { System.out.print("" + (char) fis.read()); } } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> <comment>Properties Example</comment> <entry key="Width">15</entry> <entry key="Height">200</entry> </properties>