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


Java 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 为空。

示例

下面的例子展示了 java.util.Properties.loadFromXML() 方法的用法。

package com.tutorialspoint;

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

相关用法


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