文件下载

Posted 薛小生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件下载相关的知识,希望对你有一定的参考价值。

package com.neuedu.controller;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;

import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.util.MultiValueMap;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class Down {
    
    @RequestMapping("/testResponseEntity")
    public ResponseEntity<byte[]> testResponseEntity(HttpServletRequest request) throws Exception{
//        得到整个web应用的对象
        ServletContext servletContext = request.getServletContext();
//        文件名
        String  fileName="风吹麦浪.mp3";
//        得到文件的真实路径
        String realPath = servletContext.getRealPath("/WEB-INF/"+fileName);
//        得到输入对象对象流
        InputStream in=new FileInputStream(new File(realPath));
//        创建一个数组,准备接收文件流
        byte[]body=new byte[in.available()];
//        将文件输入数组
        try {
            in.read(body);
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        
        MultiValueMap<String, String>headers=new HttpHeaders();
//        w文件名的编码问题
        try {
            fileName = new String(fileName.getBytes("gbk"),"iso8859-1");
        } catch (UnsupportedEncodingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
//        保证下载的时候不会播放文件
        headers.set("Content-Disposition", "attachment; filename="+fileName);
        
         HttpStatus statusCode=HttpStatus.OK;
        ResponseEntity<byte[]>response=new ResponseEntity<byte[]>(body, headers, statusCode);
        return response;
        
        
        
    }

}

 

以上是关于文件下载的主要内容,如果未能解决你的问题,请参考以下文章

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

代码片段 PHP,预期文件结尾,我错在哪里?

代码适用于与单个 html 文件不同的堆栈片段

VS code自定义用户代码片段snippet

Java itext为pdf 文件添加水印核心功能代码片段

VSCode自定义代码片段——声明函数