在Java中创建Properties对象

时间:2013-01-15 11:22:10

标签: java

如果我们创建类似的属性:

Properties properties = new Properties();
properties.put("[%1]", "username");
properties.put("[%2]", "password");

然后添加为属性中的键。

2 个答案:

答案 0 :(得分:0)

java.util.Properties继承了java.util.HashTable中的 put方法,因此您的密钥将为"[%1]""[%2]"

HashTable.put()

public V put(K key,
    V value)

答案 1 :(得分:0)

properties.put(<key>, <value>);

这是你想知道的。

PropertiesHashtable的子类,它代表一组持久的属性。

Properties#put方法继承自超类HashTable