为什么我做的servlet无法显示中文?急......(50分)

  • 主题发起人 主题发起人 h_o_u_l_i
  • 开始时间 开始时间
H

h_o_u_l_i

Unregistered / Unconfirmed
GUEST, unregistred user!
用out.println("<input type=submit value=显示记录>");
out.println("<h3>欢迎!<h3>");
输出后在IE中无法显示中文而显示?号.
请指点一下谢谢!
 
要對漢字進行解碼,你可以搜索下離線資料,很多的。
 
在jsp页面加入:
<%@ page contentType="text/html;
charset=gb2312" %>
或者在servlet里面
public voiddo
Get(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;
}
}
在weblogic里也可以这样
其他的方法雷同
在web.xml文件中需要配置中文环境。r如下:
<context-param>
<param-name>weblogic.httpd.inputCharset./*</param-name>
<param-value>GB2312</param-value>
</context-param>
  
 
在jsp页面的第一行增加:
<%@ page contentType="text/html";
charset="gb2312"%>
 
第一天上网还是第一天学会写程序啊?不是干这个的料就趁早洗手吧。
http://www.delphibbs.com/delphibbs/dispq.asp?lid=2384834
 
多人接受答案了。
 
后退
顶部