Commit 7fb1c7b9 authored by yanzg's avatar yanzg

Excel导出功能

parent 17a46be1
...@@ -127,4 +127,15 @@ public class UrlHelper { ...@@ -127,4 +127,15 @@ public class UrlHelper {
return url.replaceAll(SystemContants.SLASH + SystemContants.SLASH, SystemContants.SLASH). return url.replaceAll(SystemContants.SLASH + SystemContants.SLASH, SystemContants.SLASH).
replaceAll(SystemContants.UNSLASH + SystemContants.UNSLASH, SystemContants.SLASH); replaceAll(SystemContants.UNSLASH + SystemContants.UNSLASH, SystemContants.SLASH);
} }
/**
* 获取合法的文件夹路径地址
*
* @return 获取合法的文件夹路径地址
*/
public static String getFolderPath(String url) {
url = UrlHelper.dealUrlDoubleChar(url);
url = UrlHelper.dealWithUrl(url);
return url;
}
} }
\ No newline at end of file
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