Util工具类 提供下载转码中文名称的excel

/**
 * 转码以提供中文名文件下载支持
 *
 * @param fileName
 * @return
 */
public static String getAttachFileNameForCn(String fileName) {
    StringBuffer sb = new StringBuffer();
    try {
        sb.append("filename=").append(URLEncoder.encode(fileName, "UTF-8"))
                .append(";filename*=UTF-8''").append(URLEncoder.encode(fileName, "UTF-8"));
    } catch (UnsupportedEncodingException e) {
        logger.error(e.getMessage(), e);
    }

    return sb.toString();
}

/**
 * 下载XSSFWorkbook格式的excel
 *
 * @param name
 * @param book
 * @param response
 * @throws IOException
 */
public static void exportExcel(String name, XSSFWorkbook book, HttpServletResponse response) {
    response.setContentType("application/vnd.ms-excel");
    response.setHeader("Content-disposition", "attachment;" + Util.getAttachFileNameForCn(name));

    OutputStream os = null;
    try {
        os = response.getOutputStream();
        book.write(os);
        os.flush();
        os.close();
    } catch (IOException e) {
        throw new BaseRuntimeException("export excel error", e);
    } finally {
        try {
            if (os != null){
                os.close();
            }
        } catch (IOException e) {
            logger.error(e.getMessage(), e);
        }
    }
}

发布了106 篇原创文章 · 获赞 255 · 访问量 32万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章