Java.util.Properties.setProperty(String key,String value)


描述

该java.util.Properties.setProperty(String key,String value)方法调用Hashtable的方法放。提供与getProperty方法的并行性。强制使用字符串作为属性键和值。返回的值是Hashtable调用put的结果。

声明

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

public Object setProperty(String key,String value)

参数

key - 要放入此属性列表的键。

value - 与key对应的值。

返回值

此方法返回此属性列表中指定键的先前值,如果没有,则返回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}