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