Java中如何使用Properties對(duì)象存儲(chǔ)鍵值對(duì)

小樊
92
2024-08-20 13:57:28
欄目: 云計(jì)算

在Java中,可以使用Properties對(duì)象來(lái)存儲(chǔ)鍵值對(duì)。下面是一個(gè)簡(jiǎn)單的示例代碼:

import java.util.Properties;

public class PropertiesExample {
    public static void main(String[] args) {
        Properties properties = new Properties();
        
        // 添加鍵值對(duì)
        properties.setProperty("key1", "value1");
        properties.setProperty("key2", "value2");
        
        // 獲取值
        String value1 = properties.getProperty("key1");
        System.out.println("Value of key1: " + value1);
        
        // 遍歷所有鍵值對(duì)
        for (String key : properties.stringPropertyNames()) {
            String value = properties.getProperty(key);
            System.out.println(key + ": " + value);
        }
    }
}

在上面的示例中,我們創(chuàng)建了一個(gè)Properties對(duì)象,并使用setProperty()方法添加了兩個(gè)鍵值對(duì)。然后使用getProperty()方法獲取指定鍵的值,并使用stringPropertyNames()方法遍歷所有鍵,并獲取對(duì)應(yīng)的值。

運(yùn)行上面的代碼,輸出結(jié)果如下:

Value of key1: value1
key1: value1
key2: value2

0