javaWeb的文件模板下载实现

我用的是点击a标签,然后文件下载的方法。
前端代码:

	<a class="layui-btn" onclick="DownLoad()">模板下载</a>
	<script type="text/javascript">
	function DownLoad(){ 
	     window.open(url="http://localhost:8080/medicalSystem/login/download");  
	}
	</script>

显示效果:
在这里插入图片描述
后端的代码(用的是SpringMVC,所在写在controller里面:

@RequestMapping(value="download")
public ResponseEntity<byte[]> download(HttpServletRequest request) throws IOException {
   // File file = new File("C:\\Users\\dell\\Desktop\\chemicalDate.xlsx");
	String path=this.getClass().getResource("/chemicalDate.xlsx").getPath();
	File file=new File(path);
    byte[] body = null;
    InputStream is = new FileInputStream(file);
    body = new byte[is.available()];
    is.read(body);
    HttpHeaders headers = new HttpHeaders();
    headers.add("Content-Disposition", "attchement;filename=" + file.getName());
    HttpStatus statusCode = HttpStatus.OK;
    ResponseEntity<byte[]> entity = new ResponseEntity<>(body, headers, statusCode);
    return entity;
}

我存放的文件位置在src下面,所以要用代码:

this.getClass().getResource("/里面加src为起点的后面的文件路径").getPath();

我的文件路径为:

this.getClass().getResource("/chemicalDate.xlsx").getPath()

对应的文件位置为:
在这里插入图片描述
此外,还有一点是,如果文件是在本地磁盘下面,则很简单的本地磁盘下的绝对路径就可以了,比如:

File file = new File("C:\\Users\\dell\\Desktop\\chemicalDate.xlsx");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值