當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。