當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。