如果我们创建类似的属性:
Properties properties = new Properties();
properties.put("[%1]", "username");
properties.put("[%2]", "password");
然后添加为属性中的键。
答案 0 :(得分:0)
java.util.Properties继承了java.util.HashTable中的 put方法,因此您的密钥将为"[%1]"
和"[%2]"
。
public V put(K key,
V value)
答案 1 :(得分:0)
properties.put(<key>, <value>);
这是你想知道的。
Properties
是Hashtable
的子类,它代表一组持久的属性。
Properties#put
方法继承自超类HashTable
。