如何使用 ResourceBundle 避免 Java 应用程序中的硬编码配置路径?
我想消除 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不需要 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
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.
您需要检查 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.
在 Java 6 之前,ResourceBundle 通常允许:
Java 6 附带了 ResourceBundle.Control 类,它打开了通往其他 ResourceBundle 源的大门,例如:
希望这会有所帮助。
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:
Hope this helps.