創(chuàng)新互聯(lián)www.cdcxhl.cn八線動態(tài)BGP香港云服務器提供商,新人活動買多久送多久,劃算不套路!
站在用戶的角度思考問題,與客戶深入溝通,找到鐵山網站設計與鐵山網站推廣的解決方案,憑借多年的經驗,讓設計與互聯(lián)網技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網站制作、成都網站設計、企業(yè)官網、英文網站、手機端網站、網站推廣、空間域名、雅安服務器托管、企業(yè)郵箱。業(yè)務覆蓋鐵山地區(qū)。這篇文章主要介紹如何實現(xiàn)Java后端SSM框架圖片上傳功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
一、技術概述
(1)這個技術是做什么
這個技術是上傳圖片到服務器上,并且把地址存在數(shù)據(jù)庫中。前端調用的時候之間通過地址即可調用。
(2)學習該技術的原因
由于用戶在寫日記的時候也可以進行圖片的上傳,同時還有用戶頭像的上傳。
二、技術詳述
以上傳用戶的頭像為例
(1)接口代碼
@RequestMapping(value = "user/profilePhoto", produces = "application/json; charset=utf-8") @ResponseBody public boolean imageUphold(@RequestParam("photo") MultipartFile file, Long phone) throws IOException { String filePath = ducumentBase;// 保存圖片的路徑 // String filePath = "/image";//保存圖片的路徑 // 獲取原始圖片的拓展名 String originalFilename = file.getOriginalFilename(); System.out.println("originalFilename: " + originalFilename); // 新的文件名字 String newFileName = UUID.randomUUID() + originalFilename; // 封裝上傳文件位置的全路徑 filePath += "/" + phone; System.out.println("filePath: " + filePath); File targetFile = new File(filePath, newFileName); if (!targetFile.exists()) { targetFile.mkdirs(); } // 把本地文件上傳到封裝上傳文件位置的全路徑 System.out.println("newFileName: " + newFileName); System.out.println("targetFile: " + targetFile.getName()); System.out.println("phone: " + phone); //System.out.println("afterPhone"); try { file.transferTo(targetFile); } catch (IllegalStateException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } String allPath=mappingPath + "/" + phone+ "/" + newFileName; System.out.println("存儲路徑為"+allPath); boolean result=onedayServiceImpl.updProfilePhoto(allPath, phone);//存在數(shù)據(jù)庫中,其中allPath的數(shù)據(jù)庫類型為varchar(1000) return result; }
當前名稱:如何實現(xiàn)Java后端SSM框架圖片上傳功能-創(chuàng)新互聯(lián)
網頁地址:http://aaarwkj.com/article22/gjpcc.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供動態(tài)網站、自適應網站、虛擬主機、電子商務、網站改版、用戶體驗
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內容