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


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



描述

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

聲明

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

protected Set<String> handleKeySet()

參數

keyâˆ' 所需對象的鍵

返回值

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

異常

NA

示例

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

package com.tutorialspoint;

import java.util.*;

// create a class that extends to ListResourceBundle
class MyResources extends ListResourceBundle {

   // get contents must be implemented
   protected Object[][] getContents() {
      return new Object[][] {
         {"hello", "Hello World!"},
         {"bye", "Goodbye World!"},
         {"goodnight", "Goodnight World!"}
      };
   }
   
   protected Set<String> handleKeySet() {
      return new HashSet<String>();
   }
}

public class ListResourceBundleDemo {
   public static void main(String[] args) {

      // create a new MyResources instance
      MyResources mr = new MyResources();

      // get the object for key hello
      System.out.println("" + mr.getString("hello"));
   }
}

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

Hello World!

相關用法


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