java.util.Properties.store(Writer writer,String comments)方法實例
java.util.Properties.store(Writer writer,String comments) 方法寫入此屬性列表(鍵和元素對)在此屬性表中適合使用load(Reader)方法的格式輸出字符流。
聲明
以下是java.util.Properties.store()方法的聲明
public void store(Writer writer,String comments)
參數
-
out -- 輸出字符流讀取流。
-
comments -- 屬性列表的描述。
返回值
此方法返回此屬性列表中指定鍵的舊值,或者null,如果它冇有。
異常
-
IOException -- 如果將此屬性列表寫入到指定的輸出流拋出一個IOException異常。
-
ClassCastException -- 如果此Properties對象包含不屬於任何字符串鍵或值。
-
NullPointerException -- 如果 out 為 null.
例子
下麵的示例演示java.util.Properties.store()方法的用法。
package com.yiibai; import java.io.IOException; import java.io.StringWriter; import java.util.*; public class PropertiesDemo { public static void main(String[] args) { Properties prop = new Properties(); StringWriter sw = new StringWriter(); // add some properties prop.setProperty("Height", "200"); prop.put("Width", "1500"); // print the list System.out.println("" + prop); try { // store the properties list in an output writer prop.store(sw, "PropertiesDemo"); // print the writer System.out.println("" + sw.toString()); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
{Width=1500, Height=200} #PropertiesDemo #Sat Jun 30 02:34:42 EEST 2012 Width=1500 Height=200