91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

天峻县| 珠海市| 教育| 莎车县| 正镶白旗| 惠水县| 仪陇县| 梓潼县| 九江市| 乌拉特前旗| 伽师县| 松滋市| 双柏县| 饶阳县| 楚雄市| 图木舒克市| 花垣县| 云阳县| 平阳县| 武定县| 元谋县| 定边县| 乌恰县| 神木县| 双江| 峨眉山市| 东平县| 胶南市| 和林格尔县| 南投市| 望城县| 射阳县| 禄丰县| 枣强县| 纳雍县| 屏边| 长宁县| 平谷区| 遂宁市| 库车县| 巴彦县|