Java Properties setProperty(String key,String value) 方法



描述

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

声明

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

public Object setProperty(String key,String value)

参数

  • key − 要放入此属性列表中的键。

  • value − 与 key 对应的值。

返回值

此方法返回此属性列表中指定键的先前值,如果它没有先前值则返回 null。

异常

更新 Properties 的键的示例

以下示例演示了 java.util.Properties.setProperty() 方法的使用。我们创建了一个 Properties 对象,并使用 setProperty 和 put 方法添加属性,然后打印 properties 对象。再次使用 setProperty() 方法,我们更新了属性并打印它们。

package com.tutorialspoint;

import java.util.Properties;

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

输出

让我们编译并运行上述程序,这将产生以下结果:

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

添加 Properties 的键的示例

以下示例演示了 java.util.Properties.setProperty() 方法的使用。我们创建了一个 Properties 对象,并使用 setProperty 方法添加属性,然后打印 properties 对象。再次使用 setProperty() 方法,我们更新了属性并打印它们。

package com.tutorialspoint;

import java.util.Properties;

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

      // add some properties
      prop.setProperty("Height", "200");
      prop.setProperty("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);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

{Height=200, Width=1500}
{Height=500, Width=15}
java_util_properties.htm
广告