Java中如何遍历Properties对象的键值对

avatar
作者
筋斗云
阅读量:0

在Java中,可以使用Properties类的entrySet()方法来获取Properties对象中的键值对集合,然后使用迭代器或增强型for循环来遍历键值对。

以下是一个示例代码:

import java.util.Properties; import java.util.Map;  public class Main {     public static void main(String[] args) {         Properties properties = new Properties();         properties.setProperty("key1", "value1");         properties.setProperty("key2", "value2");         properties.setProperty("key3", "value3");          // 遍历Properties对象的键值对         for (Map.Entry<Object, Object> entry : properties.entrySet()) {             System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue());         }     } } 

在上面的示例中,我们创建了一个Properties对象并设置了一些键值对。然后使用entrySet()方法获取键值对集合,并使用增强型for循环遍历输出每个键值对的键和值。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!