赞
踩
一、问题现象
resources
目录下download文件夹放模板 excel 文件,通过接口下载后,可以正常下载,但是一直打不开
二、解决方法
尝试了几种解决方法,修改请求头、修改下载方法都不好使,最后是修改了pom
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <configuration> <encoding>UTF-8</encoding> <nonFilteredFileExtensions> <!--不加这一行,xlsx文件会被过滤,然后在maven build的时候,去target下看对应的xlsx就是损坏的--> <nonFilteredFileExtension>xlsx</nonFilteredFileExtension> </nonFilteredFileExtensions> </configuration> </plugin>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。