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


Java Java.util.Properties.load()用法及代码示例



描述

这个java.util.Properties.load(InputStream inStream)方法从输入字节流中读取属性列表(键和元素对)。输入流采用 load(Reader) 中指定的简单 line-oriented 格式,并假定使用 ISO 8859-1 字符编码;即每个字节是一个 Latin1 字符。

声明

以下是声明java.util.Properties.load()方法

public void load(InputStream inStream)

参数

inStream- 输入流。

返回值

此方法不返回值。

异常

  • IOException- 如果从输入流读取时发生错误。

  • IllegalArgumentException- 如果输入流包含格式错误的 Unicode 转义序列。

示例

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

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();
      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("\n".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

相关用法


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