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


Java Java.util.ResourceBundle.handleKeySet()用法及代碼示例



描述

這個java.util.ResourceBundle.handleKeySet()方法返回一組僅包含在此 ResourceBundle 中的鍵。

聲明

以下是聲明java.util.ResourceBundle.handleKeySet()方法

protected Set<String> handleKeySet()

參數

NA

返回值

此方法返回一組僅包含在此 ResourceBundle 中的鍵

異常

NA

示例

下麵的例子展示了 java.util.ResourceBundle.handleKeySet() 方法的用法。

package com.tutorialspoint;

import java.util.*;

public class ResourceBundleDemo extends ResourceBundle {

   @Override
   public Object handleGetObject(String key) {
      if (key.equals("hello")) {
         return "Hello World!";
      } else {
         return null;
      }
   }

   @Override
   public Enumeration getKeys() {
      StringTokenizer key = new StringTokenizer("Hello World!");
      return key;
   }

   protected Set<String> handleKeySet() {
      return new HashSet<String>();
   }

   public static void main(String[] args) {

      // create a new ResourceBundle with specified locale
      ResourceBundle bundle =
      ResourceBundle.getBundle("hello", Locale.US);

      // print the keys
      Enumeration<String> enumeration = bundle.getKeys();
      
      while (enumeration.hasMoreElements()) {
         System.out.println("" + enumeration.nextElement());
      }
   }
}

假設我們有一個資源文件hello_en_US.properties在您的 CLASSPATH 中可用,具有以下內容。這個文件將用作我們示例程序的輸入——

hello = Hello World!
bye = Goodbye World!
morning = Good Morning World!

讓我們編譯並運行上麵的程序,這將產生以下結果——

hello
bye
morning

相關用法


注:本文由純淨天空篩選整理自 Java.util.ResourceBundle.handleKeySet() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。