|
@@ -457,9 +457,12 @@ public class FileHandlerService implements InitializingBean {
|
|
|
String _Path = urll.getPath();
|
|
|
String urlStrr = getSubString(_Path, compressFileKey);
|
|
|
originFileName = compressFileKey + urlStrr.trim();
|
|
|
+ originFileName = URLDecoder.decode(originFileName, uriEncoding);
|
|
|
attribute.setSkipDownLoad(true);
|
|
|
} catch (MalformedURLException e) {
|
|
|
e.printStackTrace();
|
|
|
+ } catch (UnsupportedEncodingException e) {
|
|
|
+ e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
url = WebUtils.encodeUrlFileName(url);
|