作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个枚举,其中值以 utf8 格式显示。因此,我的 jsp View 中存在一些编码问题。有没有办法从我的 messages.properties
文件中获取值。如果我的属性文件中有以下几行怎么办:
shop.first=Первый
shop.second=Второй
shop.third=Третий
我如何将它们注入(inject)到枚举中?
public enum ShopType {
FIRST("Первый"), SECOND("Второй"), THIRD("Третий");
private String label;
ShopType(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}
最佳答案
我经常有类似的用例,我通过将键(而不是本地化的值)作为枚举属性来处理。使用 ResourceBundle
(或使用 Spring 时的 MessageSource
),我可以在需要时解析任何此类本地化字符串。这种方法有两个优点:
.properties
文件中,从而消除了 Java 类中的所有编码问题;.properties
文件)。这样,您的枚举将如下所示:
public enum ShopType {
FIRST("shop.first"), SECOND("shop.second"), THIRD("shop.third");
private final String key;
private ShopType(String key) {
this.key = key;
}
public String getKey() {
return key;
}
}
(我删除了 setter,因为枚举属性应该始终是只读的。无论如何,它不再是必需的。)
您的 .properties
文件保持不变。
现在是获取本地化商店名称的时候了...
ResourceBundle rb = ResourceBundle.getBundle("shops");
String first = rb.getString(ShopType.FIRST.getKey()); // Первый
希望这会有所帮助...
杰夫
关于java - Spring 从属性文件中获取枚举值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26250242/
我是一名优秀的程序员,十分优秀!