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


Java Java.util.Properties.store()用法及代碼示例



描述

這個java.util.Properties.store(OutputStream out,String comments)方法將此屬性表中的屬性列表(鍵和元素對)以適合使用 load(InputStream) 方法加載到屬性表的格式寫入輸出流。

聲明

以下是聲明java.util.Properties.store()方法

public void store(OutputStream out,String comments)

參數

  • out- 輸出流。

  • comments- 屬性列表的描述。

返回值

此方法返回此屬性列表中指定鍵的先前值,如果沒有,則返回 null。

異常

  • IOException- 如果將此屬性列表寫入指定的輸出流會引發 IOException。

  • ClassCastException- 如果此 Properties 對象包含任何不是字符串的鍵或值。

  • NullPointerException- 如果 out 為空。

示例

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

package com.tutorialspoint;

import java.io.IOException;
import java.util.*;

public class PropertiesDemo {
   public static void main(String[] args) {
      Properties prop = new Properties();

      // add some properties
      prop.setProperty("Height", "200");
      prop.put("Width", "1500");

      // print the list 
      System.out.println("" + prop);
      
      try {
         // store the properties list in an output stream
         prop.store(System.out, "PropertiesDemo");
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

{Width=1500, Height=200}
#PropertiesDemo
#Sat Jun 30 02:30:14 EEST 2012
Width=1500
Height=200

相關用法


注:本文由純淨天空篩選整理自 Java.util.Properties.store() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。