当前位置: 技术问答>java相关
主文件中的中文显示正常,但include进来的文件中的中文产生乱码?在线高分等待!
来源: 互联网 发布时间:2015-09-22
本文导语: 我写了两个JSP,其中都包涵了中文,但主文件中的中文显示正常,而include进来的文件中的中文都显示为乱码了,有没有大侠遇到这种情况?请指教! 我的环境是Tomcat4.1.12+windows xp | 针对jsp...
我写了两个JSP,其中都包涵了中文,但主文件中的中文显示正常,而include进来的文件中的中文都显示为乱码了,有没有大侠遇到这种情况?请指教!
我的环境是Tomcat4.1.12+windows xp
我的环境是Tomcat4.1.12+windows xp
|
针对jsp和servlet:
解决办法:
第一:
在jsp页面加入:
或者在servlet里面
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=gb2312");//这是重要的
上面的如果在不行就用如下的方法在数据入库前进行调用:
public static String UnicodeToChinese(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("ISO8859_1"),"gb2312");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
public static String ChineseToUnicode(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("gb2312"),"ISO8859_1");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
3:)解决weblogic/webshpere中文问题:
在web.xml文件中需要配置中文环境。r如下:
weblogic.httpd.inputCharset./*
GB2312
解决办法:
第一:
在jsp页面加入:
或者在servlet里面
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=gb2312");//这是重要的
上面的如果在不行就用如下的方法在数据入库前进行调用:
public static String UnicodeToChinese(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("ISO8859_1"),"gb2312");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
public static String ChineseToUnicode(String s){
try{
if(s==null||s.equals("")) return "";
String newstring=null;
newstring=new String(s.getBytes("gb2312"),"ISO8859_1");
return newstring;
}
catch(UnsupportedEncodingException e)
{
return s;
}
}
3:)解决weblogic/webshpere中文问题:
在web.xml文件中需要配置中文环境。r如下:
weblogic.httpd.inputCharset./*
GB2312
|
加上下面一段代码试一试
|
呵呵, 我也碰到过这样的问题, 后来把包含的方式改了就好了;
如果你用
建议改成 试试, 或者反过来试试, 我记不太清楚了
如果你用
建议改成 试试, 或者反过来试试, 我记不太清楚了