阅读:2010回复:0
关于JSP中文设置问题 ,现列举例程 !
关于JSP中文设置问题 ,现列举例程 !
如网站在POST 或GET 时出现乱码,就是说你的WEB.XML的设置没有设成支持 中文, 请改为下的设置 <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" " http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <filter> <filter-name>Set Character Encoding</filter-name> <filter-class>filters.SetCharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>gb2312</param-value> </init-param> </filter> <filter-mapping> <filter-name>Set Character Encoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app> 例程下载,请到 : http://www.now.net.cn/support/host/web.xml 以下有几款支持 jsp 的虚拟主机,以供参考: ■■基本A 支持JSP 送100M 空间邮箱 - 500 元/年 ■■增强A 支持JSP/PHP MYSQ 送300M 空间邮箱- 1100 元/年 ●在线申请地址 http://www.now.net.cn/host 申请完可以立即网上支付,立即开通您的服务!! ★更多支持ASP,ASP.NET,JSP, PHP,PERL,CGI脚本空间点击http://www.now.net.cn/host [img]http://b.todayisp.com/468x60_0.gif [/img] 全球免费咨询电话,请点击 http://www.now.net.cn/customer/moreline.net Q Q在线咨询:168075865 188092185 TEL:0756-2281071 ---------------------------------------------- 〓优惠套餐推荐: ⊙基本C型主机 送域名 送100Mb邮局 348 元/年 ⊙商务C型主机 送国家顶级CN域名或国际域名?送800M 空间邮箱?送GCDN 网 站加速及镜像引擎?送繁简通网络简装版 1600 元/年 更多优惠,详情请见: http://www.now.net.cn/special/ |
|