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


Java Java.util.Properties.setProperty(String key,String value)用法及代碼示例



描述

這個java.util.Properties.setProperty(String key,String value)方法調用Hashtable方法put。提供與 getProperty 方法的並行性。強製使用字符串作為屬性鍵和值。返回的值是 Hashtable 調用 put 的結果。

聲明

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

public Object setProperty(String key,String value)

參數

  • key─ 要放入此屬性列表中的 key 。

  • value─ 鍵對應的值。

返回值

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

異常

NA

示例

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

package com.tutorialspoint;

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);

      // change the properties
      prop.setProperty("Width", "15");
      prop.setProperty("Height", "500");

      // print the list 
      System.out.println("" + prop);
   }
}

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

{Width=1500, Height=200}
{Width=15, Height=500}

相關用法


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