gpt4 book ai didi

java - java类中的Struts2国际化

转载 作者:搜寻专家 更新时间:2023-11-01 01:29:11 26 4
gpt4 key购买 nike

我有一个 Struts2 Web 应用程序,它使用 i18n 属性文件进行本地化。getText 方法在 jsp 和操作类 getText("some.identifier") 中完美运行。

但是我如何在不是 Action 类的 java 类中使用它呢?换句话说,无法访问 getText 方法的类。

最佳答案

ResourceBundle labels =
ResourceBundle.getBundle("MyBundle", currentLocale);
Enumeration bundleKeys = labels.getKeys();

while (bundleKeys.hasMoreElements()) {
String key = (String)bundleKeys.nextElement();
String value = labels.getString(key);
System.out.println("key = " + key + ", " +
"value = " + value);
}

像这样的东西会读取你的资源包

关于java - java类中的Struts2国际化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6995923/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com