java实现下载文件到默认浏览器路径
短信预约 -IT技能 免费直播动态提醒
下载文件到默认浏览器路径
在controller接口入参直接传HttpServletResponse response,然后设置文件名称(fileName)和需要下载的文件类型(contentType),inputStream是要下载的文件流,无论是网络文件还是存储在阿里OOS或者腾讯COS静态存储服务中的文件,都可以转化成InputStream的形式。
@GetMapping("/download")
public void download(HttpServletResponse response) {
return this.downloadFile(response);
}
public void downloadFile(HttpServletResponse response, InputStream inputStream, String fileName, String contentType) {
try (BufferedOutputStream out = new BufferedOutputStream(response.getOutputStream())) {
//通知浏览器以附件形式下载
response.setHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", fileName));
//文件输出格式
response.setContentType(contentType);
byte[] car = new byte[1024];
int len;
while ((len = inputStream.read(car)) != -1) {
out.write(car, 0, len);
}
} catch (IOException e) {
log.error("Method:downloadFile,ErrorMsg:{}", e.getMessage());
}
}
启动本地服务,把该接口链接url复制在浏览器上,点击回车,就可以看到下载效果了。
如果在postman上测试,则需要在以下界面点下载按钮:
Selenium修改浏览器默认下载路径
代码实现 java + selenium修改浏览器默认下载路径方法
// 1.设置驱动路径(驱动在 target 文件夹中)
System.setProperty("webdriver.chrome.driver", this.getClass().getResource("/").getPath() + "drivers/chromedriver.exe");
// 2.新的下载地址为桌面(可以弄成某个文件夹路径而不要直接弄成死的静态路径)
String downloadPath = "C:\\Users\\XXX\\Desktop";
// 3.HashMap 中保存下载地址信息
HashMap<String, Object> hashMap = new HashMap<>();
hashMap.put("download.default_directory", downloadPath);
// 4.ChromeOptions 中设置下载路径信息,需要传入保存有下载路径的 HashMap
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.setExperimentalOption("prefs", hashMap);
// 依据 ChromeOptions 来产生 DesiredCapbilities,这时 DesiredCapbilities 就也具备了下载路径的信息了
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability(ChromeOptions.CAPABILITY, chromeOptions);
// 5.依据 ChromeOptions 产生驱动,此时的 driver 已经具备了新的下载路径的
WebDriver driver = new ChromeDriver(desiredCapabilities );
以上方法亲测有效,仅为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341