1.今天在做一个例子的时候,发现后台不能正确接收中文的url参数,试了各种解决办法都不可以。
以下是代码:
Controller:
package com.springapp.mvc;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/")
public class HelloController {
@RequestMapping(method = RequestMethod.GET)
public String printWelcome(ModelMap model) {
model.addAttribute("message", "Hello world IDEA!");
model.put("content","This is my first springmvc web");
return "index";
}
@RequestMapping(value = "/page/{name}/{age}",method = RequestMethod.GET)
public String getName(ModelMap modelMap, @PathVariable("name") String name, @PathVariable("age") int age) {
modelMap.addAttribute("name",name);
modelMap.addAttribute("age",age);
return "name";
}
}
name.jsp
<%@ page pageEncoding="UTF-8" language="java" %>
<html>
<head>
<title></title>
</head>
<body>
<p>
名字:${name}<br/>
年龄:${age}<br/>
</p>
</body>
</html>
web.xml
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Spring MVC Application</display-name>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- Encoding -->
<filter>
<filter-name>characterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
天蓬老师2017-04-17 18:01:59
ほとんどの解決策は上記で明確に説明されています。 3つの方法を整理してみましょう
Tomcat は直接設定できます URIEconding="UTF-8"
new String("中文".getBytes("ISO-8859-1"), "UTF-8");
URLEncoder
を使用して中国語をエンコードします。例: baidu.com/s?wd=%E4%BD%A0%E5%A5%BD%E4%B8%96%E7%95%8C
これらの 3 つの方法は、中国語の URL が文字化けする問題を解決できます。
巴扎黑2017-04-17 18:01:59
バックグラウンドで受信したデータが文字化けしていないかデバッグしましたか?それともデータベースが文字化けしているのでしょうか? 2 つは異なる状況です。前者の場合は、request.setCharacterEncoding
メソッドを試して、new String(para.getBytes(“ISO-8859-1”),“UTF-8”
を使用してパラメーターをトランスコードします。バックグラウンド コードが文字化けしていないことがわかり、データベースが文字化けしていないかどうかを確認してください。 enConding…
大家讲道理2017-04-17 18:01:59
オブジェクトにカプセル化し、@RequestBody を使用してパラメータにアノテーションを付け、オブジェクトから取得します。ただし、パラメータが少ない場合は、オブジェクトを再度カプセル化する必要がない場合があります。
ringa_lee2017-04-17 18:01:59
springmvc 中国語の文字化けの問題: http://luanxiyuan.iteye.com/blog/1849169
new String(receivedparameters.getBytes("ISO-8859-1"), "UTF-8"); >
PHP中文网2017-04-17 18:01:59
Tomcat コンテナの場合は、URIEconding="UTF-8" useBodyEncodingForURI="true"
迷茫2017-04-17 18:01:59
@RequestMapping(value = "/xxx"、メソッド = RequestMethod.GET、ヘッダー = {"content-type=application/json;charset=UTF-8"}、生成 = {"application/json;charset=UTF) -8"})