java如何實(shí)現(xiàn)文件下載

這篇文章將為大家詳細(xì)講解有關(guān)java如何實(shí)現(xiàn)文件下載,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

衛(wèi)濱ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

1)單文件下載

public String oneFileDownload(HttpServletRequest request,HttpServletResponse response){
    //針對(duì)需求需要與需求溝通下載文件傳遞參數(shù)
    //目前demo文件名是文件的hashCode值+后綴名的方式命名,可以默認(rèn)該hashCode值為文件唯一id
    String fileName = request.getParameter("fileName");
    if(StringUtils.isBlank(fileName)){
      return "文件名為空";
    }
    String filePath = request.getSession().getServletContext().getRealPath("/convert")+File.separator+fileName;//目前文件默認(rèn)在該文件夾下,后續(xù)變動(dòng)需修改
    File downloadFile = new File(filePath);
    if(downloadFile.exists()){
      OutputStream out = null;
      FileInputStream fis = null;
      BufferedInputStream bis = null;
      try {
        if(downloadFile.isDirectory()){
          return "路徑錯(cuò)誤僅指向文件夾";
        }
        out = response.getOutputStream();// 創(chuàng)建頁面返回方式為輸出流,彈出下載框
        fis = new FileInputStream(downloadFile);
        bis = new BufferedInputStream(fis);
        response.setContentType("application/pdf; charset=UTF-8");//設(shè)置編碼字符
        response.setHeader("Content-disposition", "attachment;filename=" + fileName);
        byte[] bt = new byte[2048];
        int size = 0;
        while((size=bis.read(bt)) != -1){
          out.write(bt, 0, size);
        }

      } catch (Exception e) {
        e.printStackTrace();
      }finally {
        try {
          //關(guān)閉流
          out.flush();
          if(out != null){
            out.close();
          }
          if(bis != null){
            bis.close();
          }
          if(fis != null){
            fis.close();
          }
        } catch (Exception e2) {
          e2.printStackTrace();
        }

      }
      return "下載成功";
    }else{
      
      return "文件不存在!";  
    }

  }

2)多文件打包下載

a)下載指定文件夾下的文件,如果嵌套文件夾也支持(但文件名需要唯一)

public String zipDownload(HttpServletRequest request,HttpServletResponse response) throws IOException{
    
    String sourceFilePath = request.getSession().getServletContext().getRealPath("/convert");//文件路徑
    String destinFilePath = request.getSession().getServletContext().getRealPath("/fileZip");
    String fileName = FileUtil.zipFiles(sourceFilePath, destinFilePath);
    File file = new File(destinFilePath+File.separator+fileName);
    response.setHeader("Content-disposition", "attachment;filename=" + fileName);
    if(file.exists()){
      FileInputStream fis = null;
      BufferedInputStream bis = null;
      OutputStream out = response.getOutputStream();
      try {
        fis = new FileInputStream(file);
        bis = new BufferedInputStream(fis);
        byte[] bufs = new byte[1024 * 10];
        int read = 0;
        while ((read = bis.read(bufs, 0, 1024 * 10)) != -1) {
          out.write(bufs, 0, read);
        }
      } catch (FileNotFoundException e) {
        e.printStackTrace();
      }finally {
        if(bis != null){
          bis.close();
        }
        if(out!=null){
          out.close();
        }
        File zipFile = new File(destinFilePath+File.separator+fileName);
        if(zipFile.exists()){
          zipFile.delete();
        }
      }
    }else{
      return "文件壓縮失敗";
    }
    return "下載成功";
  }

b)下載指定文件夾下的所有文件,支持樹型結(jié)構(gòu)

public String zipDownloadRelativePath(HttpServletRequest request,HttpServletResponse response) {
    String msg ="";//下載提示信息
    String root = request.getSession().getServletContext().getRealPath("/convert");//文件路徑
    Vector<File> fileVector = new Vector<File>();//定義容器裝載文件
    File file = new File(root);
    File [] subFile = file.listFiles();
    //判斷文件性質(zhì)并取文件
    for(int i = 0; i<subFile.length; i++){
      if(!subFile[i].isDirectory()){//不是文件夾并且不為空
        fileVector.add(subFile[i]);//裝載文件
      }else{//是文件夾,再次遞歸遍歷文件夾里面的文件
        File [] files = subFile[i].listFiles();
        Vector v = FileUtil.getPathAllFiles(subFile[i],new Vector<File>());
        fileVector.addAll(v);//把迭代的文件裝到容器中
      }
    }
    //設(shè)置文件下載名稱
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
    String fileName = dateFormat.format(new Date())+".zip";
    response.setHeader("Content-disposition", "attachment;filename=" + fileName);//如果有中文需要轉(zhuǎn)碼
    //定義相關(guān)流
    //用于瀏覽器下載響應(yīng)
    OutputStream out = null;
    //用于讀壓縮好的文件
    BufferedInputStream bis = null;//用緩存性能會(huì)好一些
    //用于壓縮文件
    ZipOutputStream zos = null;
    //創(chuàng)建一個(gè)空的zip文件
    String zipBasePath = request.getSession().getServletContext().getRealPath("/fileZip");
    String zipFilePath = zipBasePath+File.separator+fileName;
    File zipFile = new File(zipFilePath);
    try {
      if(!zipFile.exists()){//不存在創(chuàng)建一個(gè)新的
        zipFile.createNewFile();
      }
      out = response.getOutputStream();
      //創(chuàng)建文件輸出流
      zos = new ZipOutputStream(new FileOutputStream(zipFile));
      //循環(huán)文件,一個(gè)一個(gè)按順序壓縮
      for(int i = 0;i< fileVector.size();i++){
        System.out.println(fileVector.get(i).getName()+"大小為:"+fileVector.get(i).length());
        FileUtil.zipFileFun(fileVector.get(i),root,zos);
      }
      //壓縮完成以后必須要在此處執(zhí)行關(guān)閉 否則下載文件會(huì)有問題
      if(zos != null){
        zos.closeEntry();
        zos.close();
        }
      byte[] bt = new byte[10*1024];
      int size = 0;
      bis = new BufferedInputStream(new FileInputStream(zipFilePath),10*1024);
      while((size=bis.read(bt,0,10*1024)) != -1){//沒有讀完
        out.write(bt,0,size);
      }
      
    } catch (Exception e) {
      e.printStackTrace();
    }finally {//關(guān)閉相關(guān)流
      try {
        //避免出異常時(shí)無法關(guān)閉
        if(zos != null){
          zos.closeEntry();
          zos.close();
          }
        
        if(bis != null){
          bis.close();
        }
        
        if(out != null){
          out.close();
        }
        if(zipFile.exists()){
          zipFile.delete();//刪除
        }
      } catch (Exception e2) {
        System.out.println("流關(guān)閉出錯(cuò)!");
      }

    }
    return "下載成功";
  }

下載輔助工具類

package com.hhwy.fileview.utils;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Vector;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;




public class FileUtil {
  /**
   * 把某個(gè)文件路徑下面的文件包含文件夾壓縮到一個(gè)文件下
   * @param file
   * @param rootPath 相對(duì)地址
   * @param zipoutputStream
   */
  public static void zipFileFun(File file,String rootPath,ZipOutputStream zipoutputStream){
    if(file.exists()){//文件存在才合法
      if(file.isFile()){
        //定義相關(guān)操作流
        FileInputStream fis = null;
        BufferedInputStream bis = null;
        try {
          //設(shè)置文件夾
          String relativeFilePath = file.getPath().replace(rootPath+File.separator, "");
          //創(chuàng)建輸入流讀取文件
          fis = new FileInputStream(file);
          bis = new BufferedInputStream(fis,10*1024);
          //將文件裝入zip中,開始打包
          ZipEntry zipEntry;
          if(!relativeFilePath.contains("\\")){
            zipEntry = new ZipEntry(file.getName());//此處值不能重復(fù),要唯一,否則同名文件會(huì)報(bào)錯(cuò)
          }else{
            zipEntry = new ZipEntry(relativeFilePath);//此處值不能重復(fù),要唯一,否則同名文件會(huì)報(bào)錯(cuò)
          }
          zipoutputStream.putNextEntry(zipEntry);
          //開始寫文件
          byte[] b = new byte[10*1024];
          int size = 0;
          while((size=bis.read(b,0,10*1024)) != -1){//沒有讀完
            zipoutputStream.write(b,0,size);
          }
        } catch (Exception e) {
          e.printStackTrace();
        }finally {
          try {
            //讀完以后關(guān)閉相關(guān)流操作
            if(bis != null){
              bis.close();
            }
            if(fis != null){
              fis.close();
            }
          } catch (Exception e2) {
            System.out.println("流關(guān)閉錯(cuò)誤!");
          }
        }
      }
//      else{//如果是文件夾
//        try {
//          File [] files = file.listFiles();//獲取文件夾下的所有文件
//          for(File f : files){
//            zipFileFun(f,rootPath, zipoutputStream);
//          }
//        } catch (Exception e) {
//          e.printStackTrace();
//        }
//        
//      }
    }
  }
  
  /*
   * 獲取某個(gè)文件夾下的所有文件
   */
  public static Vector<File> getPathAllFiles(File file,Vector<File> vector){
    if(file.isFile()){//如果是文件,直接裝載
      System.out.println("在迭代函數(shù)中文件"+file.getName()+"大小為:"+file.length());
      vector.add(file);
    }else{//文件夾
      File[] files = file.listFiles();
      for(File f : files){//遞歸
        if(f.isDirectory()){
          getPathAllFiles(f,vector);
        }else{
          System.out.println("在迭代函數(shù)中文件"+f.getName()+"大小為:"+f.length());
          vector.add(f);
        }
      }
    }
    return vector;
  }
  
  /**
   * 壓縮文件到指定文件夾
   * @param sourceFilePath 源地址
   * @param destinFilePath 目的地址
   */
  public static String zipFiles(String sourceFilePath,String destinFilePath){
    File sourceFile = new File(sourceFilePath);
    FileInputStream fis = null;
    BufferedInputStream bis = null;
    FileOutputStream fos = null;
    ZipOutputStream zos = null;
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
    String fileName = dateFormat.format(new Date())+".zip";
    String zipFilePath = destinFilePath+File.separator+fileName;
    if (sourceFile.exists() == false) {
      System.out.println("待壓縮的文件目錄:" + sourceFilePath + "不存在.");
    } else {
      try {
        File zipFile = new File(zipFilePath);
        if (zipFile.exists()) {
          System.out.println(zipFilePath + "目錄下存在名字為:" + fileName + ".zip" + "打包文件.");
        } else {
          File[] sourceFiles = sourceFile.listFiles();
          if (null == sourceFiles || sourceFiles.length < 1) {
            System.out.println("待壓縮的文件目錄:" + sourceFilePath + "里面不存在文件,無需壓縮.");
          } else {
            //讀取sourceFile下的所有文件
            Vector<File> vector = FileUtil.getPathAllFiles(sourceFile, new Vector<File>()); 
            fos = new FileOutputStream(zipFile);
            zos = new ZipOutputStream(new BufferedOutputStream(fos));
            byte[] bufs = new byte[1024 * 10];
            
            for (int i = 0; i < vector.size(); i++) {
              // 創(chuàng)建ZIP實(shí)體,并添加進(jìn)壓縮包
              ZipEntry zipEntry = new ZipEntry(vector.get(i).getName());//文件不可重名,否則會(huì)報(bào)錯(cuò)
              zos.putNextEntry(zipEntry);
              // 讀取待壓縮的文件并寫進(jìn)壓縮包里
              fis = new FileInputStream(vector.get(i));
              bis = new BufferedInputStream(fis, 1024 * 10);
              int read = 0;
              while ((read = bis.read(bufs, 0, 1024 * 10)) != -1) {
                zos.write(bufs, 0, read);
              }
            }
          }
        }
      } catch (FileNotFoundException e) {
        e.printStackTrace();
        throw new RuntimeException(e);
      } catch (IOException e) {
        e.printStackTrace();
        throw new RuntimeException(e);
      } finally {
        // 關(guān)閉流
        try {
          if (null != bis)
            bis.close();
          if (null != zos)
            zos.closeEntry();
            zos.close();
        } catch (IOException e) {
          e.printStackTrace();
          throw new RuntimeException(e);
        }
      }
    }
    return fileName;
  }
  
}

關(guān)于“java如何實(shí)現(xiàn)文件下載”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

文章標(biāo)題:java如何實(shí)現(xiàn)文件下載
鏈接地址:http://bm7419.com/article28/jcecjp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)站內(nèi)鏈、網(wǎng)站導(dǎo)航、微信公眾號(hào)、網(wǎng)站設(shè)計(jì)公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運(yùn)營(yíng)