分享Spring的下載組件。本站提示廣大學習愛好者:(分享Spring的下載組件)文章只能為提供參考,不一定能成為您想要的結果。以下是分享Spring的下載組件正文
本文為年夜家分享了Spring4的下載組件,供年夜家參考,詳細內容以下
package com.hnust.common.controller;
import org.apache.commons.io.FileUtils;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
import java.io.File;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
/**
* Created by Heweipo on 2016/5/27.
* <p>
* 下載通用掌握器
*/
@RestController
public class DownloadController extends BaseController {
/**
* 下載文件通用辦法
*
* @param file 文件對象
* @return 文件字撙節
*/
public ResponseEntity<byte[]> export(File file) {
return export(file.getName(), file);
}
/**
* 下載文件通用辦法
*
* @param fileName 文件稱號
* @param file 文件對象
* @return 文件字撙節
*/
public ResponseEntity<byte[]> export(String fileName, File file) {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
headers.setContentDispositionFormData("attachment", encodeFileName(fileName));
ResponseEntity<byte[]> rs = null;
try {
// 這裡不克不及應用 HttpStatus.CREATED 201 是由於 IE Edge 沒法辨認,然則Firefox chrome 沒成績
rs = new ResponseEntity<>(FileUtils.readFileToByteArray(file),
headers, HttpStatus.OK);
} catch (IOException e) {
//throw new CommonException(ResponseStatusEnum.FILE_ERROR, e);
}
return rs;
}
/**
* 下載文件的稱號,這個是在閱讀器那邊顯示的稱號
*
* @param fileName 文件稱號
* @return 加碼的文件稱號
* <p>
* IE
* Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko
* <p>
* Edge
* Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586
* <p>
* Firefox
* Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
* <p>
* Chrome
* Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36
*/
private String encodeFileName(String fileName) {
String name = fileName;
try {
String agent = request.getHeader("USER-AGENT").toLowerCase();
if (null != agent && (agent.contains("msie") || agent.contains("edge"))) { // IE edge
name = URLEncoder.encode(fileName, "UTF-8");
} else if (agent.contains("safari") || agent.contains("chrome") || agent.contains("firefox")) { // safari chrome firefox
name = new String(fileName.getBytes("UTF-8"), "iso-8859-1");
} else { // IE10 IE11
name = URLEncoder.encode(fileName, "UTF-8");
}
// 把加號復原為空格(IE Edge 有成績)
name = name.replace("+", "%20");
} catch (UnsupportedEncodingException e) {
//throw new CommonException(ResponseStatusEnum.FAILURE, e);
}
return name;
}
}
以上就是本文的全體內容,願望對年夜家的進修有所贊助,也願望年夜家多多支撐。