getProperty(String key):根據指定的key獲取對應的value值。
setProperty(String key, String value):設置指定key的value值。
remove(Object key):根據指定的key移除對應的鍵值對。
stringPropertyNames():返回Properties中所有key的集合。
load(InputStream inStream):從輸入流中加載Properties對象。
store(OutputStream out, String comments):將Properties對象存儲到輸出流中。
clear():清空Properties對象中的所有鍵值對。
list(PrintStream out):將Properties對象中的鍵值對以文本形式輸出到指定的輸出流。
containsKey(Object key):判斷Properties對象中是否包含指定的key。
containsValue(Object value):判斷Properties對象中是否包含指定的value。