当前位置: 技术问答>java相关
WebLogic中文问题
来源: 互联网 发布时间:2017-04-26
本文导语: 在JSP文件之间传递中文时,在web.xml文件中加入 WebLogic.httpd.inputCharset./* GBK 还是不行 WebLogic.httpd.inputCharset这个class在那里? 在C:beawlserver6.1libweblogic.jar找不到呀 | ...
在JSP文件之间传递中文时,在web.xml文件中加入
WebLogic.httpd.inputCharset./*
GBK
还是不行
WebLogic.httpd.inputCharset这个class在那里?
在C:beawlserver6.1libweblogic.jar找不到呀
WebLogic.httpd.inputCharset./*
GBK
还是不行
WebLogic.httpd.inputCharset这个class在那里?
在C:beawlserver6.1libweblogic.jar找不到呀
|
在你的weblogic.xml中加入如下的语句:
encoding
GBK
encoding
GBK
|
在jsp页面加入:
或者在servlet里面
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html; charset=gb2312");//这是重要的
或者在servlet里面
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html; charset=gb2312");//这是重要的
|
WebLogic.httpd.inputCharset这个类,应该是在
lib中的,哪个,weblogic中,或者,其它的包里,我还没有准确找到
但是可以告诉你,绝对在lib这个包中
就是weblogic7中,server中的lib包
lib中的,哪个,weblogic中,或者,其它的包里,我还没有准确找到
但是可以告诉你,绝对在lib这个包中
就是weblogic7中,server中的lib包
|
or add
delete HTML contentType Attribute.