您好,登錄后才能下訂單哦!
小編給大家分享一下java實現多文件上傳效果的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
廢話不多說,直接上代碼:
@ApiOperation(value = "批量上傳", notes = "批量上傳", httpMethod = "POST") @PostMapping(value = "/upload") public void upload(HttpServletRequest request) { MultipartHttpServletRequest multipartRequest=(MultipartHttpServletRequest)request; String savePath="E:/test/"; //保證目錄存在 File dir = new File(savePath); if (!dir.isDirectory()) { dir.mkdirs(); } Iterator<String> it = multipartRequest.getFileNames(); while (it.hasNext()) { MultipartFile multipartFile = multipartRequest.getFile(it.next()); if (multipartFile != null) { String originName = multipartFile.getOriginalFilename(); int subIdx = originName.lastIndexOf("."); String suffix = originName.substring(subIdx);//文件后綴 File file; String showName; while (true) { showName = UUID.randomUUID().toString().replaceAll("-", "") + suffix;//文件名稱 file = new File(savePath + showName); if (!file.exists()) { break; } } byte[] buffer = new byte[1024]; try (OutputStream os = new FileOutputStream(file); InputStream is = multipartFile.getInputStream()){ while (is.read(buffer) != -1) { os.write(buffer); } } catch (IOException e) { e.printStackTrace(); } } } }
以上是java實現多文件上傳效果的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。