解决办法:
1、修改tomcat配置文件
在tomcat/conf/server.xml添加配置:
<Connector URIEncoding="UTF-8" port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
2、在Java后台转换字符编码,java网络传输默认是"iso-8859-1",所以需要做如下转换:
String fileName = new String(fileName.getBytes("iso-8859-1"), "UTF-8");