如何使用 ResourceBundle 避免 Java 应用程序中的硬编码配置路径?

发布于 2024-07-06 14:50:09 字数 177 浏览 6 评论 0原文

我想消除 Java 应用程序中配置数据对硬编码路径的依赖,我知道使用 ResourceBundle 将帮助我使用类加载器来查找资源。

有人可以告诉我如何通过适当使用 ResourceBundle 来替换资源的硬编码路径(例如类所需的 .properties 配置数据文件)? 如果可能的话,简单清晰的例子,谢谢大家。

I'd like to eliminate dependencies on hardcoded paths for configuration data in my Java apps, I understand that using ResourceBundle will help me use the classloader to find resources.

Can someone tell me how I would replace a hardcoded path to a resource (say a .properties configuration data file required by a class) with appropriate use of ResourceBundle? Simple clear example if possible, thanks all.

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

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

发布评论

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

评论(4

想你的星星会说话 2024-07-13 14:50:10

您不需要 ResourceBundle。 一个简单的 Properties 对象就可以完成这项工作。 只需使用类加载器获取属性文件的输入流并使用它来加载值。 如果您需要处理更复杂的用户配置,请使用 首选项 api

亲切的问候

You don't need a ResourceBundle. A simple Properties object can do the job. Just use the classloader to get an inputstream for you properties file and use it to load de values. If you need to handle more sophisticated user configurations, use the preferences api.

Kind Regards

素染倾城色 2024-07-13 14:50:10

Resource.getBundle(..) 背后的技巧是类加载器的使用。 您可以通过 this.getClass().getClassLoader() 访问类路径中的所有内容来加载它。
Resource.getBundle(..) 是在资源/定位主题中使用它的实用助手。

The trick behind Resource.getBundle(..) is the use of the classloader. You can load everything thats in your classpath by accessing it via this.getClass().getClassLoader().
Resource.getBundle(..) is a practical helper to use it in the resource/locatization topic.

唐婉 2024-07-13 14:50:09

您需要检查 Resource.getBundle(String)。 您将类路径上资源的完全限定名称传递给它以作为属性文件加载。

You will want to examine Resource.getBundle(String). You pass it the fully qualified name of a resource on the classpath to load as a properties file.

转身泪倾城 2024-07-13 14:50:09

在 Java 6 之前,ResourceBundle 通常允许:

Java 6 附带了 ResourceBundle.Control 类,它打开了通往其他 ResourceBundle 源的大门,例如:

  • XML 文件(请参阅 Javadoc 中的示例 2)
  • 数据库行

希望这会有所帮助。

Prior to Java 6, ResourceBundle typically allowed:

Java 6 comes with the ResourceBundle.Control class which opens the door to other sources of ResourceBundles, for example:

  • XML files (see example 2 in Javadoc)
  • Database rows

Hope this helps.

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