[Ajax4JSF] JSF的中文支持问题
kinsonjob
2012-02-03
在网上看到都时JSP的解决方法. 有没有JSF中文支持?
在前端页面: <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> ... <h:inputText id="name" value="#{customerBean.customer.name}" required="true" label="Name"/> 在后端接收,不能显示乱码: System.out.println(customer.name); 或: new String(customer.getName().getBytes("ISO-8859-1"), "gb2312") 存入database 也一样,我是第一次接触中文处理,有没有高人给指点? |
|
lvjun106
2012-02-03
服务器配置文件中,JSP页面里,数据库中全部统一种中文格式即可。
另IDE最好也统一一下,否则编译、部署时可能会出现问题 |
|
hantsy
2012-04-02
从2003年起,Java 项目全部用UTF8, 从来不关心编码问题。
|
|
hudepin
2012-06-27
hantsy 写道 从2003年起,Java 项目全部用UTF8, 从来不关心编码问题。
对的 |