当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Properties loadFromXML()用法及代码示例


Properties类loadFromXML()方法

  • loadFromXML() 方法可在java.util包。
  • loadFromXML() 方法用于将给定输入流 (is) 上的 XML 文件表示的所有属性加载到此属性表中。
  • loadFromXML() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • loadFromXML() 方法可能在加载文件时抛出异常。
    • IOException:从输入流中读取时可能会抛出此异常。
    • 无效的属性格式异常:当存在属性格式为空时,可能会抛出此异常。
    • NullPointerException :当给定参数为空时可能会抛出此异常存在。

用法:

    public void loadFromXML(InputStream is);

参数:

  • InputStream is– 表示在给定的帮助下读取 XML 文件的输入流。

返回值:

该方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void loadFromXML(InputStream is) method 
// of Properties


import java.io.*;
import java.util.*;
public class StoreToXMLOfProperties {
 public static void main(String arg[]) throws Exception {
  // Instantiate Properties object
  Properties prop = new Properties();

  prop.put("10", "C");
  prop.put("20", "C++");
  prop.put("30", "JAVA");
  prop.put("40", "PHP");
  prop.put("50", "SFDC");

  // Instantiates stream for input
  // and output
  FileOutputStream fos = new FileOutputStream("properties.xml");
  FileInputStream is = new FileInputStream("properties.xml");

  // By using storeToXML() method isto
  // store the properties in the given
  // XML file
  prop.storeToXML(fos, null);

  // By using loadFromXML() method isto
  // load the properties from the given
  // is stream
  prop.loadFromXML(is);

  // Display properties on console
  prop.list(System.out);
 }
}

输出

-- listing properties --
50=SFDC
40=PHP
30=JAVA
20=C++
10=C


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Properties loadFromXML() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。