|
|
@@ -2362,7 +2362,7 @@ public class ExcelTabController extends BladeController {
|
|
|
OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
|
|
|
response.setContentType("application/pdf");
|
|
|
response.setCharacterEncoding("UTF-8");
|
|
|
- fileName = fileName.replaceAll("/", "_");
|
|
|
+ fileName = fileName.replaceAll("/", "_").replaceAll("#","号");
|
|
|
String encode = URLEncoder.encode(fileName, "UTF-8");
|
|
|
encode = encode.replaceAll( "%2B", "+");
|
|
|
response.setHeader("Content-disposition", "attachment;filename=" + encode + ".pdf");
|