freemarker的国际化小记

首先在servlet中加上加载资源文件的代码

Locale locale = request.getLocale();
ResourceBundle rb = ResourceBundle.getBundle("properties.info", locale);
ResourceBundleModel rbm = new ResourceBundleModel(rb, new BeansWrapper());
rootMap.put("rbm", rbm);


其次是在eclipse的src/properties包下新建国际化文件
info.properties

再次用eclipse的property editor编辑该文件
info_en_US.properties
name=Tom
say=Hi


info_zh_CN.properties
name=\u5F20\u4E09
say=\u4F60\u597D


最后在template中这样写
<p>name = ${rbm("name")}</p>
<p>say = ${rbm("say")}</p>

你可能感兴趣的:(freemarker,locale)