我现在想从hdfs上获取文件直接将获取到的文件返回给前端,请问要怎么实现? 文件不能存放到本地路径
java环境
怎么在hdfs上下载文件传给前端
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
9条回答 默认 最新
- 是派小星呀 2023-01-06 10:42关注
String fileName = "xxx"; response.reset(); response.setContentType("application/x-msdownload"); try { response.setHeader("Content-Disposition", "attachment;filename=" + new String(fileName.getBytes(), "ISO-8859-1")); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } try ( BufferedInputStream bis = new BufferedInputStream("xxx"); // 输出流 BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream()) ) { byte[] buff = new byte[1024]; int len = 0; while ((len = bis.read(buff)) > 0) { bos.write(buff, 0, len); } } catch (IOException e) { e.printStackTrace(); }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 List<Class>有参构造
- ¥20 搭建三相栅极电路后高侧浮动地VS存在电容特性
- ¥20 云卓h12pro 数传问题
- ¥20 请问有人知道怎么用工艺库里面的sdb文件通过virtuoso导出来library里面每个cell的symbol吗?
- ¥20 海思 nnie 编译 报错
- ¥50 决策面并仿真,要求有仿真结果图
- ¥15 springboot接入微信支付SDK
- ¥50 大区域的遥感影像匹配 怎么做啊
- ¥15 求解答:pytorch跑yolov8神经网络受挫
- ¥20 Js代码报错问题不知道怎么解决