java.util.Properties.load(InputStream inStream)方法實例
java.util.Properties.load(InputStream inStream) 方法讀取屬性列表(鍵和元素對)從輸入字節流。輸入流是一個簡單的麵向行的格式為負載器(Reader)指定的,並假定使用ISO8859-1字符編碼;這是每個字節是Latin1字符。
聲明
以下是java.util.Properties.load()方法的聲明
public void load(InputStream inStream)
參數
-
inStream -- 輸入流。
返回值
此方法不返回任何值。
異常
-
IOException -- 如果從輸入流中讀取數據時發生錯誤。
-
IllegalArgumentException --如果輸入流中包含錯誤的Unicode轉義序列。
例子
下麵的示例演示java.util.Properties.list()方法的用法。
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(); String s = "Height=200"; String s2 = "Width=15"; try { // create a new input and output stream FileOutputStream fos = new FileOutputStream("properties.txt"); FileInputStream fis = new FileInputStream("properties.txt"); // write the first property in the output stream file fos.write(s.getBytes()); // change the line between the two properties fos.write(" ".getBytes()); // write next property fos.write(s2.getBytes()); // load from input stream prop.load(fis); // print the properties list from System.out prop.list(System.out); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
-- listing properties -- Width=15 Height=200