您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringMVC上傳文件并保存到本地代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
基本的MVC配置就不展示了,這里給出核心代碼
在spring-mvc的配置文件中寫入如下配置
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="maxUploadSize"> <value>100000</value> </property> <property name="defaultEncoding"> <value>UTF-8</value> </property> </bean>
接口
@RequestMapping(value="/uploadPictures",method=RequestMethod.POST) public Object uploadHeadPic(@RequestParam("file")CommonsMultipartFile file,InputStream inputStream,HttpServletRequest request) { String uuid = UUID.randomUUID().toString().trim(); String fileN=file.getOriginalFilename(); int index=fileN.indexOf("."); String fileName=uuid+fileN.substring(index); try { File fileMkdir=new File("F:\\photoTest"); if(!fileMkdir.exists()) { fileMkdir.mkdir(); } //定義輸出流 將文件保存在D盤 file.getOriginalFilename()為獲得文件的名字 FileOutputStream os = new FileOutputStream(fileMkdir.getPath()+"\\"+fileName); InputStream in = file.getInputStream(); int b = 0; while((b=in.read())!=-1){ //讀取文件 os.write(b); } os.flush(); //關閉流 in.close(); os.close(); } catch (Exception e) { return ActionHelper.responseFailed("上傳失敗!"); } return ActionHelper.responseOk(fileName); }
ActionHelper為我自己封裝的工具類,這里根據業務替換成自己需要的即可
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。