JavaWeb中 post提交时的编码

在使用springMVC开发JavaWeb项目时,进行POST表单提交时,前台编码是utf-8,中文传到后台是乱码。使用的方案是

String name = request.getPatameter("name");String(name.getBytes("iso-8859-1"),"utf-8");

我在网上看了一些设置,包括设置tomcat的编码

<Connector URIEcoding="UTF-8" useBodyEncodingForURI="true"/>

但是也是不起作用啊。想问一下是什么问题,是设置的问题吗?


蝴蝶不菲
浏览 508回答 1
1回答

拉丁的传说

<filter>&nbsp; &nbsp; <filter-name>encodingFilter</filter-name>&nbsp; &nbsp; <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>&nbsp; &nbsp; <init-param>&nbsp; &nbsp; &nbsp; <param-name>encoding</param-name>&nbsp; &nbsp; &nbsp; <param-value>UTF8</param-value>&nbsp; &nbsp; </init-param>&nbsp; </filter>&nbsp; <filter-mapping>&nbsp; &nbsp; <filter-name>encodingFilter</filter-name>&nbsp; &nbsp; <url-pattern>/*</url-pattern>&nbsp; </filter-mapping>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript