java本地文件下载功能

文件下载部分:以二进制流数据下载,也是最常见的一种 

  @RequestMapping(value="/downloadqrcodes",method={RequestMethod.GET,RequestMethod.POST})

    public ResponseEntity<byte[]> download(String filename,HttpServletRequest req,HttpServletResponse res) throws Exception {
        
        System.out.println(req.getCharacterEncoding());
        System.out.println(filename);
        ApplicationContext ctx = GetApplication.getApp();
        QrcodepersonMapper qrcodepersonMapper = (QrcodepersonMapper) ctx.getBean("qrcodepersonMapper");
        Qrcodeperson qrcodeperson = qrcodepersonMapper.selectByPrimaryKey(Integer.parseInt(filename));
        String filen = qrcodeperson.getUrlname();
        
        //下载文件路径
        //filename="何家劲.jpg";
        String path = req.getServletContext().getRealPath("/file/");
        File file = new File(path+File.separator+filen);
        System.out.println("文件路径为:"+path+File.separator+filen);
        HttpHeaders headers = new HttpHeaders();
        //下载显示的文件名,解决中文名称乱码的问题
        String downloadFileName = new String(filen.getBytes("UTF-8"), "ISO-8859-1");  //为了下载下来的名字和文件的名字相同
        System.out.println(downloadFileName);
        //通知浏览器以attachment(下载方式)打开图片
        headers.set(filen, null);
        headers.setContentDispositionFormData("attachment", downloadFileName);
        //application/octet-stream:二进制流数据(最常见的文件下载)
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        //201 HttpStatus.CREATED
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file), headers,HttpStatus.CREATED);    
    }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java 中,你可以使用 Java 的标准库来下载文件到本地。你可以使用 `java.net.URL` 和 `java.nio.file` 类来实现这个功能。下面是一个简单的示例代码: ```java import java.io.BufferedInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.net.URL; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardCopyOption; public class FileDownloader { public static void main(String[] args) { String fileUrl = "https://example.com/file.txt"; String savePath = "C:/path/to/save/file.txt"; try { // 方法一:使用 InputStream 和 FileOutputStream downloadFileUsingStream(fileUrl, savePath); // 方法二:使用 Files.copy downloadFileUsingFilesCopy(fileUrl, savePath); System.out.println("文件下载成功!"); } catch (IOException e) { System.out.println("文件下载失败: " + e.getMessage()); } } private static void downloadFileUsingStream(String fileUrl, String savePath) throws IOException { URL url = new URL(fileUrl); try (BufferedInputStream in = new BufferedInputStream(url.openStream()); FileOutputStream fileOutputStream = new FileOutputStream(savePath)) { byte[] dataBuffer = new byte[1024]; int bytesRead; while ((bytesRead = in.read(dataBuffer, 0, 1024)) != -1) { fileOutputStream.write(dataBuffer, 0, bytesRead); } } } private static void downloadFileUsingFilesCopy(String fileUrl, String savePath) throws IOException { URL url = new URL(fileUrl); Path targetPath = Path.of(savePath); Files.copy(url.openStream(), targetPath, StandardCopyOption.REPLACE_EXISTING); } } ``` 你需要将 `fileUrl` 替换为要下载的文件的 URL,将 `savePath` 替换为要保存到的本地文件路径。这个示例代码提供了两种下载文件的方法,你可以选择其中一种来使用。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值