1:在tomcat的conf/service.xml中设置  URIEncoding="UTF-8"

   

springmvc 上传图片中文乱码解决方案_xml

2. controller中控制:

//防止出现中文乱码
fileName=new String(fileName.getBytes(),"UTF-8");