试了很多办法,各种改编码方式 都没有用
给每个jsp文件设置contentType
调用HttpRespone的setContentType方法resp.setContentType("text/html;charset=UTF-8");
在自定义标签类中修改字符串编码方式
pageContext.include(new String(parameter.getValue().getBytes("ISO-8859-1"),"UTF-8"));
解决方法
在jsp的page指令中设置pageEncoding属性
<%@ page contentType="text/html; UTF-8" language="java" pageEncoding="UTF-8" %>
然后就好了 ,不乱码了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)