我刚刚开始使用此代码:
public static void main(String[] args) {
Locale[] supportedLocales = {
new Locale("en", "CA"),
new Locale("es", "ES")
};
ResourceBundle labels = ResourceBundle.getBundle("Messages", supportedLocales[0]);
System.out.println(supportedLocales[0].getDisplayVariant());
System.out.println(supportedLocales[0].getVariant().toString());
}
}
我没有得到那些sysout
。在类路径中有这些文件:
Messages.bundle
<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<f:loadBundle basename="Messages" var="msg"/>
<f:view> <html>
<body>
<f:view>
<h:form>
<h:commandButton value="#{msg.cancel}" action="fail"/>
<h:commandButton value="#{msg.submit}" action="success"/>
<h:outputText value="#{myBundle[myBean.msgKey]}"/>
</h:form>
</f:view>
</body>
</html> </f:view>
对于每种语言:
Messages_es.properties
cancel=Cancelar
submit=Enviar
Search=Buscar
答案 0 :(得分:0)
我只需要枚举所有键,这样我就读了一个键。使用此代码:
Enumeration bundleKeys = labels.getKeys();
while (bundleKeys.hasMoreElements()) {
String key = (String)bundleKeys.nextElement();
String value = labels.getString(key);
System.out.println("key = " + key + ", " +
"value = " + value);
}
我得到了这个输出:
key = Search, value = Buscar
key = submit, value = Enviar
key = cancel, value = Cancelar