中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring MVC 獲取servletContext,實現文件下載功能

發布時間:2020-07-26 15:24:22 來源:網絡 閱讀:408 作者:汲湘 欄目:編程語言

以下是獲取servletContext:

import javax.servlet.ServletContext;

import org.springframework.web.context.ContextLoader;
import org.springframework.web.context.WebApplicationContext;

/**
 * ServletContext輔助類。提供springmvc獲取servletContext對象及項目真實路徑的靜態方法
 * @author Administrator
 *
 */
public class ServletContextUtils {

    private ServletContextUtils() {

    }

    /**
     * 獲取ServletContext對象
     * @return ServletContext對象
     */
    public static ServletContext getServletContext() {
        WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();
        ServletContext context = webApplicationContext.getServletContext();
        return context;
    }

    /**
     * 根據folder獲取文件的真實路徑
     * @param folder 要獲取文件夾的真實路徑
     * @return folder的真實路徑
     */
    public static String getRealPath(String folder) {
        ServletContext context = getServletContext();
        String path = context.getRealPath(folder);
        return path;
    }
}

以下是文件下載代碼:

@RequestMapping("/{filename}")
    public ResponseEntity<byte[]> download(@PathVariable String filename) throws IOException {
        ResponseEntity<byte[]> entity = null;
        try {
            HttpHeaders headers = new HttpHeaders();
            String pathname = getFilepath(filename);
            File file = new File(pathname);
            headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
            entity = new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file), headers, HttpStatus.CREATED);
            return entity;
        } catch (IOException e) {
            logger.error(e.getMessage());
            throw e;
        }
    }

    private String getFilepath(String filename) {
        String pathname = ServletContextUtils.getRealPath("/file") + "\\" + filename + ".txt";
        return pathname;
    }

springmvc4 以上版本已經實現與servlet的低耦合,不知道為什么很多人寫代碼用的也是springMVC4或者5,仍然在使用httprequest。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南丰县| 襄城县| 德州市| 容城县| 鹤岗市| 高碑店市| 黔西| 拉孜县| 辉县市| 武乡县| 通道| 来宾市| 夏津县| 吴江市| 四平市| 朝阳县| 石城县| 仁布县| 建德市| 枣庄市| 新化县| 龙胜| 民和| 邳州市| 宁安市| 文成县| 来安县| 木兰县| 晋城| 吉木萨尔县| 江城| 大厂| 万州区| 奉新县| 盐城市| 科技| 连山| 江永县| 怀柔区| 桃园市| 信丰县|