当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.util.Properties.propertyNames()用法及代码示例



描述

这个java.util.Properties.propertyNames()方法 返回此属性列表中所有键的枚举,如果尚未从主属性列表中找到同名的键,则包括默认属性列表中的不同键。

声明

以下是声明java.util.Properties.propertyNames()方法

public Enumeration<?> propertyNames()

参数

NA

返回值

此方法返回此属性列表中所有键的枚举,包括默认属性列表中的键。

异常

ClassCastExceptionâˆ' 如果此属性列表中的任何键不是字符串。

示例

下面的例子展示了 java.util.Properties.propertyNames() 方法的用法。

package com.tutorialspoint;

import java.util.*;

public class PropertiesDemo {
   public static void main(String[] args) {
      Properties prop = new Properties();

      // add some properties
      prop.put("Height", "200");
      prop.put("Width", "15");

      // assign the property names in a enumaration
      Enumeration<?> enumeration = prop.propertyNames();

      // print the enumaration elements
      System.out.println("" + enumeration.nextElement());
      System.out.println("" + enumeration.nextElement());
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

Width
Height

相关用法


注:本文由纯净天空筛选整理自 Java.util.Properties.propertyNames() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。