1.转换字符编码方式
在JSP中,<%=request.getParameter(“username”)%>应改为:
<%=new String(request.getParameter("username").getBytes("iso-8859-1"),"gb18030")%>
注意:在JSP页面接收的值很少的情况下使用。否则相当繁琐。
2. 利用SetCharacterEncoding方法
在所有需要获取参数的命令之前加上:
<%request.setCharacterEncoding("GB18030"); %>
注意:1和2两种方式不能同时使用。每个需要传中文值的页面都需要添加此句。
3.利用JavaBean
在JavaBean中写个字符编码转换类及方法,然后通过此类的方法对需要转换的字符进行转换。
(1) 设置方法如下(在JavaBean中):
public class CharactorEncoding {
public String toString(String str) {
String text="";
if(str != null && !str.equals("")) {
try {
text = new String(str.getBytes("iso8859-1"), "GB18030");
}
catch (Exception e) {
e.printStackTrace();
}
}
return text;
}
}
(2) 传递文件如下(在jsp页面中):
<form action="student.jsp" method="post">
姓名:<input type="text" name="name"/><br/>
<input type="submit" value="提交"/> <input type="reset" value="取消"/>
</form>
如果在姓名中添加中文,则需要代码转换。
(3) 调用方法如下(在jsp页面中):
<jsp:useBean id="student" class="zck.Bean" />
<jsp:setProperty property="*" name="student"/><!--直接传递过来的参数不能识别中文-->
<jsp:useBean id="encoding" class="zck.CharactorEncoding"/>
<%=encoding.toString(student.getName()) %>
而调用
<%=student.getName() %>时,英文可以正常传递过来,而中文则出现乱码。