struts2乱码问题】的更多相关文章

简介:做了个功能,用的struts2,表单提交到后台,接收后打印出来的数据乱码.   解决步骤: 1. struts.xml中配置<constant name="struts.i18n.encoding" value="utf-8" /> 结果:乱码 2. web.xml中配置CharsetEncodingFilter过滤器 结果:还是乱码 3. jsp页面编码 pageEncoding="UTF-8" 结果:仍然乱码 4. <…
乱码问题的起因在于数据在web系统的各个层中间传递的时候编码不同,比如页面使用GB18030而中间层使用UTF-8.由于struts2默认使用的就是UTF-8编码,所以在页面如果使用的是其他的编码格式,那么表单提交后就会产生乱码了. 我们使用过滤器来解决这个问题. 以页面使用GB18030为例,两个步骤: 1.在struts.xml中添加:<constant name="struts.i18n.encoding" value="GB18030"/> 2.…
在spring.jar包的org.springframework.web.filter包下有个CharacterEncodingFilter.java 把spring.jar放进工程的lib里,然后在web.xml文件中<servlet>元素前加以下代码 注意要把CharacterEncodingFilter放在其他过滤器之前声明. <!-- 著名 Character Encoding filter -->    <filter>          <filter…
今天碰到一乱码问题,百思不得其解. 最后解决办法是设置了表单的提交方式,将method设置为post,解决问题.虽然默认的提交方式是post.但是如果不显式设置的话,就会出现我所出现的问题. 总结下处理struts2乱码的几个方法:方法一: 在struts.xml中添加<constant name="struts.i18n.encoding" value="UTF-8"/> 方法二: 在jsp页面中添加<%@ page language="…
一.HttpServletRequest介绍 HttpServletRequest对象代表客户端的请求,当客户端通过HTTP协议访问服务器时,HTTP请求头中的所有信息都封装在这个对象中,通过这个对象提供的方法,可以获得客户端请求的所有信息. 二.Request常用方法 2.1.获得客户机信息 getRequestURL方法返回客户端发出请求时的完整URL. getRequestURI方法返回请求行中的资源名部分. getQueryString 方法返回请求行中的参数部分. getPathInf…
一.类型转换器 1.在动作类action中,声明和表单中name属性的值同名的属性,提供get和set方法,struts2就可以通过反射机制,从页面中获取对应的内容 package com.kdyzm.convert; import com.opensymphony.xwork2.ActionSupport; public class TypeConvertAction extends ActionSupport{ private static final long serialVersionU…
http://blog.csdn.net/hjw506848887/article/details/8966194 今天写项目时,突然遇到了struts2中表单提交的中文乱码问题,调了好久就是不知道答案. 下面的我的jsp页面: <form action="indexAction.action"> <input name="dimName" type="text" /> <br /> <input nam…
1.创建类实现interceptor接口或者继承abstractinter~~~类 package com.mi.intercepter; import java.util.Date; import com.mi.action.LoginAction; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.Interceptor; public class Inter…
Struts2登录 1. 需要注意:Struts2需要运行在JRE1.5及以上版本 2. 在web.xml配置文件中,配置StrutsPrepareAndExecuteFilter或FilterDispatcher <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFi…
我的前台页是这样的: <body>      <form action="test.action" method="post">          测试文件:<input type="file" id="doc" name="path" value=""/>          <input type="submit" valu…