返回介绍

java.util 类 ListResourceBundle

发布于 2019-10-04 09:51:33 字数 5418 浏览 941 评论 0 收藏 0

java.lang.Object
  └java.util.ResourceBundle
      └java.util.ListResourceBundle

public abstract class ListResourceBundle
extends ResourceBundle
 

ListResourceBundleResourceBundle 的一个抽象类,用于管理方便而又易于使用的列表中的语言环境资源。有关资源包的常规信息,请参阅 ResourceBundle

子类必须重写 getContents 并提供一个数组,其中数组中的每个项都是一个对象对。每对的第一个元素是键,该键必须是一个 String ,并且第二个元素是和该键相关联的值。

下面的示例显示了具有基本名称 "MyResources" 的资源包系列的两个成员。"MyResources" 是资源包系列的默认成员,"MyResources_fr" 是 French 成员。这些成员是基于 ListResourceBundle (一个相关的示例显示了如何把一个资源包添加到基于属性文件的此系列)。此示例中的键形式为 "s1" 等。实际的键完全取决于您的选择,只要它们和程序中用于从资源包中检索对象的键相同。键区分大小写。

 
public class MyResources extends ListResourceBundle {
     public Object[][] getContents() {
         return contents;
     }
     static final Object[][] contents = {
     // LOCALIZE THIS
         {"s1", "The disk \"{1}\" contains {0}."},  // MessageFormat pattern
         {"s2", "1"},                               // location of {0} in pattern
         {"s3", "My Disk"},                         // sample disk name
         {"s4", "no files"},                        // first ChoiceFormat choice
         {"s5", "one file"},                        // second ChoiceFormat choice
         {"s6", "{0,number} files"},                // third ChoiceFormat choice
         {"s7", "3 Mar 96"},                        // sample date
         {"s8", new Dimension(1,5)}                 // real object, not just string
     // END OF MATERIAL TO LOCALIZE
     };
 }

 public class MyResources_fr extends ListResourceBundle {
     public Object[][] getContents() {
         return contents;
     }
     static final Object[][] contents = {
     // LOCALIZE THIS
         {"s1", "Le disque \"{1}\" {0}."},          // MessageFormat pattern
         {"s2", "1"},                               // location of {0} in pattern
         {"s3", "Mon disque"},                      // sample disk name
         {"s4", "ne contient pas de fichiers"},     // first ChoiceFormat choice
         {"s5", "contient un fichier"},             // second ChoiceFormat choice
         {"s6", "contient {0,number} fichiers"},    // third ChoiceFormat choice
         {"s7", "3 mars 1996"},                     // sample date
         {"s8", new Dimension(1,3)}                 // real object, not just string
     // END OF MATERIAL TO LOCALIZE
     };
 }
从以下版本开始:
JDK1.1
另请参见:
ResourceBundle , PropertyResourceBundle

字段摘要
从类 java.util.ResourceBundle 继承的字段
parent
构造方法摘要
ListResourceBundle()

单独的构造方法。

方法摘要
protected abstract Object[][]getContents()

参见类描述。

Enumeration<String>getKeys()

ResourceBundle.getKeys 的实现。

ObjecthandleGetObject(Stringkey)

从此资源包中获取给定键的对象。

从类 java.util.ResourceBundle 继承的方法
getBundle, getBundle, getBundle, getLocale, getObject, getString, getStringArray, setParent
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

构造方法详细信息

ListResourceBundle

public ListResourceBundle()
单独的构造方法。(由子类构造方法调用,通常是隐式的)。

方法详细信息

handleGetObject

public final Object handleGetObject(Stringkey)
从类 ResourceBundle 复制的描述
从此资源包中获取给定键的对象。如果此资源包未包含给定键的对象,则返回 null。
指定者:
ResourceBundle 中的 handleGetObject
参数:
key - 所需对象的键。
返回:
给定键的对象,或者为 null。

getKeys

public Enumeration<String> getKeys()
ResourceBundle.getKeys 的实现。
指定者:
ResourceBundle 中的 getKeys

getContents

protected abstract Object[][] getContents()
参见类描述。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文