Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 ResourceBundle 已加载后执行此操作?我在 Tomcat 下工作并尝试了不同的代码示例,但没有一个对我有用。有什么建议吗?
不,您不能更改捆绑软件的语言环境。但是您可以使用其他语言环境重新加载相同的包基本名称:
bundle = ResourceBundle.getBundle("my.base.name", otherLocale);
称呼
ResourceBundle.clearCache();
然后使用您想要的语言环境再次加载您的包。