Web jsp开发学习——终极解决jsp中request和response中文乱码的问题(加个过滤器)
中文乱码真的很烦人的。而且每次都要写,可麻烦了,而且有时候写了还不一定管用,所以我们可以试试过滤器
1.每个jsp头上当然要写上utf8啦
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
2.然后添加一个过滤器
在过滤器的doFilter里写上
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { // TODO Auto-generated method stub // place your code here /* * 设置request、response的编码 */ request.setCharacterEncoding("utf-8"); response.setCharacterEncoding("utf-8"); // pass the request along the filter chain chain.doFilter(request, response); }
3.别忘了在web.xml里配置
<filter> <filter-name>CharFilter</filter-name> <filter-class>com.xx17.cys.filter.CharacterFilter</filter-class> </filter> <filter-mapping> <filter-name>CharFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
大功告成!!!
舒服!!!
nyoj99 单词连接 欧拉回路
NYOJ289 苹果 典型背包
nyoj 139 牌数 康拓展开
poj1423 NYOJ_69 数字长度 斯特林公式 对数应用
NYOJ311 完全背包 对照苹果
sort 函数的应用
NYOJ120 校园网络 强连接
nyoj219 计算日期 吉姆拉森公式
把SmartQ5系统装在SD卡上
- 最新文章
-
CRM 4.0 Creating Interactive Plugins
安装完MSCRM后修改Report Service Server的办法
MSCRM 中DateTime.ParseExact 使用
在 IFrame里显示实体关联视图 (转自http://www.cnblogs.com/MSCRM/articles/1526780.html) Jim Wang
不能pubish客户实体》解决办法之一,unsupport
javascript getDynamicEnitity sample
Unable to Load Client Print Control CRM 4.0 Report Printing
Default Multicolumn Sort (Proof of Concept)
How to update the Microsoft Dynamics CRM Web site port after you install Microsoft Dynamics CRM 4.0
开发人员一定要加入收藏夹的网站