快速业务通道

在PropertyResourceBundles中引入继承 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19
//Do nothing here. This will cause a search of the parents      //of this inherited bundle.     }

如果提供支持的 PropertyResourceBundle 找不到资源,将按顺序检查父束,如清单 3 所示。

清单 3. 用给定的键检查父束

if (retVal == null) {    // resource not found in PropertyResourceBundle, check all parents.    if (relationships != null) {      for (Enumeration e = relationships.elements(); e.hasMoreElements();) {        // attempt to get the resource from the current parent bundle.       retVal = ((InheritedPropertyResourceBundle)e.nextElement()).         handleGetObject(key);       if (retVal != null) return retVal;      }    }   }

在PropertyResourceBundles中引入继承(4)

时间:2011-02-06 Eric A. Olson

我们的另一个设计目的是允许在代码内和代码外(在一个独立的文件中)都能修改关系层次结构。(稍后我们会讨论第二个问题。)

如清单 4 所示,为了允许改变层次结构,提供了一套修改器方法。这些方法允许在运行时添加和移去父束。

清单 4. 关系层次结构修改器方法

/**    * Adds the InheritedPropertyResourceBundle at the end of the parent    * list.    * @param r the resource bundle which will be added to the end    * of the parent list.    */   public void addRelationship(InheritedPropertyResourceBundle r) {     relationships.add(r);   }   /**    * Adds the InheritedPropertyResourceBundle at the given location. All    * subsequent parents will be pushed down one space.    * @param r the resource bundle which will be added.    * @param l the insertion location of the resource bundle. For example,    * a value of 0 will place this parent bundle at the beginning of the list    * - it will be checked for any key first.    */   public void addRelationship(InheritedPropertyResourceBundle r, int l) {     relationships.add(l, r);   }   /**    * Removes the resource bundle from the parent list.    */   public void removeRelationship(InheritedPropertyResourceBundle r) {     relationships.remove(r);   }

新类:RelationshipLoader

我们创建了另一个类来处理从文件中载入父束的细节问题。我们这样做是为了从 InheritedPropertyResourceBundle 的实现中分离出对平面文件进行语法分析的逻辑。

新类 RelationshipLoader 既处理文件位置逻辑,也实际解析文件。

RelationshipLoader 类寻找一个与 InheritedPropertyResourceBundle 同名,但带有 .relationships 后缀的文件。例如,如果一个束是用基础束名称 resources.ProductNames 创建的, RelationshipLoader 类就会按照类装载程序管理的搜索规则来搜索一个名为 resources/ProductNames.relationships 的文件。

因为关系是定义在全局级别上,而且与使用的语言环境无关,.relationships 文件不需要翻译。

.relationships 文件最好与实际的 .properties 文件位于同一目录下,所以全部的资源束文件都保存在明确的位置。如果 RelationshipLoader 没有找到 .relationships 的资源束文件,它就假定束不是从任何父束中继承下来的。它会和 PropertyResourceBundle 一样运行。请参阅清单 5。

从实际的资源束中分离继承关系定义允许当前所有的资源束按原样使用 ― 在这种新模式下,不需任何修改就可以使用现有的资源束。

清单 5. 在 Relati

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号