环境:
Liferay Portal 5.2.3 CE (Bundle with tomcat 6)
开发方式:
plugin sdk
1.Jsp页面乱码
参照普通的Jsp乱码解决方案
比如在Jsp页面开始加入
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
2.Portlet信息乱码(标题title portlet-info)
参照sample-localized-portlet-5.2.0.1.war
在Portlet.xml中加入
<resource-bundle>你的资源文件</resource-bundle>
eg.
资源文件在info/heylib/liferay/resources/Resource.properties
<resource-bundle>info.heylib.liferay.resources.Resource</resource-bundle>
如果你有其他i18n支持
<supported-locale>fr</supported-locale>
<supported-locale>zh</supported-locale>
<resource-bundle>info.heylib.liferay.resources.Resource</resource-bundle>
当然Resource_zh.properties , Resource_fr.properties 应该是存在的,而且是和Resource.properties在同一路径下
注意一点:
Resource.properties文件不管你是UTF-8还是ISO,GBK的 记得native2ascii
否则仍将出现乱码,eclipse下推荐使用PropertiesEditor插件
keywords应该足够了,其他不详google一下,应该没问题了