• javaweb下载文件


    //读取文件->写出文件

    public static void main(String[] args) {

     InputStream in =null;

     OutputStream out = null;

    try{

    File file = new File("c:\123.doc");

    in = new FileInputStream(file);

    out = new FileOutputStream("c:\666.doc");

     int len = 0;

     byte buffer[] = new byte[1024];

     while((len=in.read(buffer))>0){

     out.write(buffer, 0, len);

     }

    }catch (Exception e) {

    e.printStackTrace();

    }finally{

    try {

    out.close();

    in.close();

    } catch (IOException e) {

    e.printStackTrace();

    }

    }

    }

    //web文件下载

    public void download() {

      InputStream in = null ;

      OutputStream out = null;

      try{

      in = new FileInputStream("c:\123.doc");

      int len =0;

      byte[] buffer = new byte[1024];

      out = getResponse().getOutputStream();

      getResponse().setHeader("Content-Disposition", "attachment;filename=aaa.doc"); //告诉浏览器以什么方式打开文件

      while((len=in.read(buffer))>0){

      out.write(buffer, 0, len);

      }

      }catch (Exception e) {

      e.printStackTrace();

    }

      }

    //web文件下载(文件名称乱码解决)

    public void download() {

      InputStream in = null ;

      OutputStream out = null;

      try{

      in = new FileInputStream("c:\123.doc");

      int len =0;

      byte[] buffer = new byte[1024];

      out = getResponse().getOutputStream();      //将文件写出response的输出流

      getResponse().setContentType("text/html;charset=UTF-8");

      getResponse().setHeader("Content-Disposition", "attachment;filename="+URLEncoder.encode("作业本.doc","UTF-8"));   //告诉浏览器以什么方式打开文件 和 文件名乱码解决

      while((len=in.read(buffer))>0){

      out.write(buffer, 0, len);

      }

      }catch (Exception e) {

      e.printStackTrace();

    }

      }

  • 相关阅读:
    锐捷 ac ap 连接 记录
    锐捷 Fat/Fit Ap切换
    qualcomm lk gpio
    git patch 使用
    qualcomm batch 烧录脚本
    Cisco无线控制器配置Radius
    hostapd作为radius服务器
    Android N: jack server failed
    win10: This file can't be opened
    2. 特征工程之特征选择
  • 原文地址:https://www.cnblogs.com/chenweichu/p/5566100.html
Copyright © 2020-2023  润新知