如何在Java中从DB加载资源包消息?

发布于 2024-08-20 15:42:39 字数 222 浏览 6 评论 0原文

我可以动态加载资源包吗?我可以动态编辑资源包吗?

如果我能拥有这样一个逻辑资源包(即位于上下文中而不是物理文件中),那就最好了。

相关:

如何从文件资源加载资源包?

Can I load a resource bundle dynamically? Can I edit a resource bundle dynamically?

It would be best if I can have such a logical resource bundle (i.e. located in context not as physical file).

Related:

How to load a resource bundle from a file resource?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〃安静 2024-08-27 15:42:39

您是否能够覆盖 ListResourceBundle ?它提供了一个扩展点,用于添加您自己的 Object[][] 资源密钥对。

来自 javadoc:

public class MyResources extends ListResourceBundle {
     protected Object[][] getContents() {
         return new Object[][] = {
         // 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
         };
     }
 }

此示例返回一个硬编码列表,但您可以修改它以从数据库或其他任何内容返回您想要的任何内容。

Would you be able to override the ListResourceBundle? It provides an extension point for adding in your own Object[][] of resource key pairs.

From the javadoc:

public class MyResources extends ListResourceBundle {
     protected Object[][] getContents() {
         return new Object[][] = {
         // 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
         };
     }
 }

This example returns a hard coded listing but you can modify that to return whatever you want from a database or anything else.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文