列出所有可用的 ResourceBundle 文件
我正在使用 ResourceBundle,我想为用户提供一个选择 GUI 语言的选项。
我想获取特定包下的所有资源文件的列表。
我不知道我将拥有什么资源,因为该应用程序基于插件。
java 是否有一个选项可以搜索包下的所有可用资源?
(如果没有,我想插件应该提供所有可用的本地内容)
谢谢大家
i am using ResourceBundle and I want to give the user an option to select a language for the GUI.
i want to get a list of all resource files that are under a specific package.
i don't know what resources I will have since this application is based on plug-ins.
Is there an option to ask from java to search all available resources under a package?
(if no i guess the plug-in should give all available local for it)
thank you all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些文件可能驻留在网络服务器上。没有在 Web 服务器上列出文件(页面)的标准方法。因此,一般来说,您需要做的是记住您拥有哪些区域设置的资源(也许创建一个列表作为构建过程的一部分)。
The files may reside on a web server. There is no standard way of listing files (pages) on a web server. So, in general, what you need to do is remember which locales you have resources for (perhaps create a list as part of your build process).