a tag cannot download Chinese files

Cannot download Chinese files using the a tag

Declare an a-tag Chinese download file in the page

<a href="static/上传文件模版.xlsx">下载模板</a>

Solution: Add URIEncoding=”UTF-8” in the server.xml file of tomcat

<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8"/>

Guess you like

Origin blog.csdn.net/ampsycho/article/details/77770506