Commit ae8d157a by 宋祥

1.fixBug:+号转码失败的问题修复

parent 9b63a7c5
...@@ -176,7 +176,7 @@ public class Iplat4jUtils { ...@@ -176,7 +176,7 @@ public class Iplat4jUtils {
return S3Constant.RESOURCE + "/" + OSConstant.FILE_DOWNLOAD return S3Constant.RESOURCE + "/" + OSConstant.FILE_DOWNLOAD
+ mainFolderPath.replace(OSConstant.DOC_ROOT_DIR, "") + mainFolderPath.replace(OSConstant.DOC_ROOT_DIR, "")
.replace(OSConstant.SEPARATOR, "/") + "/" .replace(OSConstant.SEPARATOR, "/") + "/"
+ URLEncoder.encode(zipName, "UTF-8") + ".zip"; + URLEncoder.encode(zipName, "UTF-8").replace("\\+", "%20") + ".zip";
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment