這篇文章將為大家詳細(xì)講解有關(guān)springboot中如何實(shí)現(xiàn)文件上傳下載,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)公司主要從事網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)阿壩州,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108
Spring Boot是由Pivotal團(tuán)隊(duì)提供的全新框架,其設(shè)計(jì)目的是用來簡化新Spring應(yīng)用的初始搭建以及開發(fā)過程。該框架使用了特定的方式來進(jìn)行配置,從而使開發(fā)人員不再需要定義樣板化的配置。通過這種方式,Spring Boot致力于在蓬勃發(fā)展的快速應(yīng)用開發(fā)領(lǐng)域(rapid application development)成為領(lǐng)導(dǎo)者。
Spring Boot特點(diǎn)
1. 創(chuàng)建獨(dú)立的Spring應(yīng)用程序
2. 嵌入的Tomcat,無需部署WAR文件
3. 簡化Maven配置
4. 自動(dòng)配置Spring
5. 提供生產(chǎn)就緒型功能,如指標(biāo),健康檢查和外部配置
6. 絕對(duì)沒有代碼生成和對(duì)XML沒有要求配置[
springboot 實(shí)現(xiàn)文件上傳下載實(shí)例代碼如下所示:
@Controller public class FileUploadCtrl { @Value("${file.upload.dir}") private String path; /** * 實(shí)現(xiàn)文件上傳 * */ @RequestMapping(value = "/fileUpload", method = RequestMethod.POST) @ResponseBody public Map<String,Object> fileUpload(@RequestParam("fileName") MultipartFile file){ Map<String,Object> map = new HashMap<String, Object>(); int no = 0; String msg = "上傳失敗!"; if(!file.isEmpty()){ String fileName = file.getOriginalFilename(); File dest = new File(path + "/" + fileName); if(!dest.getParentFile().exists()){ //判斷文件父目錄是否存在 dest.getParentFile().mkdir(); } try { file.transferTo(dest); //保存文件 no = 1; msg = "上傳成功!"; } catch (IllegalStateException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } map.put("no",no); map.put("msg", msg); return map; } @RequestMapping( value = "/fileDownload", method = RequestMethod.GET ) public ResponseEntity<?> getGwFileContent(@RequestParam String fileName,@RequestParam int flag) { HttpHeaders headers = new HttpHeaders(); headers.add("Cache-Control", "no-cache, no-store, must-revalidate"); String filepath = path+"/"+fileName;; InputStream is = null; try { headers.add("Content-Disposition", String.format("attachment; filename=\"%s\"", new String(fileName.getBytes("GBK"), "ISO8859-1"))); if(flag==0){//表示獲取縮略圖 File file = new File(filepath); filepath = path+"/xx"+fileName; File xxFile = new File(filepath); if(!xxFile.exists()){//不存在就生成縮略圖 Thumbnails.of(file).scale(0.25f).toFile(xxFile); } } is = new FileInputStream(new File(filepath)); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } headers.add("Pragma", "no-cache"); headers.add("Expires", "0"); return ResponseEntity .ok() .headers(headers) .contentType(MediaType.parseMediaType("application/octet-stream")) .body(new InputStreamResource(is)); } }
關(guān)于“springboot中如何實(shí)現(xiàn)文件上傳下載”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
網(wǎng)站名稱:springboot中如何實(shí)現(xiàn)文件上傳下載
文章源于:http://www.rwnh.cn/article42/psjchc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、外貿(mào)網(wǎng)站建設(shè)、動(dòng)態(tài)網(wǎng)站、網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作、App開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)