java.util.Properties.loadFromXML()方法实例
java.util.Properties.loadFromXML(InputStream in)方法加载所有指定的输入流中到此属性表中的XML文档所表示的所有属性。
声明
以下是java.util.Properties.loadFromXML()方法的声明
public void loadFromXML(InputStream in)
参数
-
in -- 输入流中读取XML文档。
返回值
此方法不返回任何值。
异常
-
IOException -- 如果读取指定的输入流导致一个IOException异常。
-
InvalidPropertiesFormatException -- 在输入流中的数据并不构成与要求的文档类型的有效的XML文档。
-
NullPointerException -- 如果 in 为 null.
例子
下面的示例演示java.util.Properties.loadFromXML()方法的用法。
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, null); // load from the xml that we saved earlier prop.loadFromXML(fis); // print the properties list prop.list(System.out); } catch (IOException ex) { ex.printStackTrace(); } } }
让我们来编译和运行上面的程序,这将产生以下结果:
-- listing properties -- Width=15 Height=200