您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關如何利用Java上傳大文件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
Java大文件上傳詳解
前言:
上周遇到這樣一個問題,客戶上傳高清視頻(1G以上)的時候上傳失敗。
一開始以為是session過期或者文件大小受系統限制,導致的錯誤。查看了系統的配置文件沒有看到文件大小限制,web.xml中seesiontimeout是30,我把它改成了120。但還是不行,有時候10分鐘就崩了。
同事說,可能是客戶這里服務器網絡波動導致網絡連接斷開,我覺得有點道理。但是我在本地測試的時候發覺上傳也失敗,網絡原因排除。
看了日志,錯誤為:
java.lang.OutOfMemoryError Java heap space
上傳文件代碼如下:
public static String uploadSingleFile(String path,MultipartFile file) { if (!file.isEmpty()) { byte[] bytes; try { bytes = file.getBytes(); // Create the file on server File serverFile = createServerFile(path,file.getOriginalFilename()); BufferedOutputStream stream = new BufferedOutputStream( new FileOutputStream(serverFile)); stream.write(bytes); stream.flush(); stream.close(); logger.info("Server File Location=" + serverFile.getAbsolutePath()); return getRelativePathFromUploadDir(serverFile).replaceAll("\\\\", "/"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); System.out.println(e.getMessage()); } }else{ System.out.println("文件內容為空"); } return null; }
乍一看沒什么大問題,我在 stream.write(bytes); 這句加了斷點,發覺根本就沒走到。而是在 bytes = file.getBytes(); 就報錯了。
原因應該是文件太大的話,字節數超過Integer(Bytes[]數組)的最大值,導致的問題。
既然這樣,把文件一點點的讀進來即可。
修改上傳代碼如下:
public static String uploadSingleFile(String path,MultipartFile file) { if (!file.isEmpty()) { //byte[] bytes; try { //bytes = file.getBytes(); // Create the file on server File serverFile = createServerFile(path,file.getOriginalFilename()); BufferedOutputStream stream = new BufferedOutputStream( new FileOutputStream(serverFile)); int length=0; byte[] buffer = new byte[1024]; InputStream inputStream = file.getInputStream(); while ((length = inputStream.read(buffer)) != -1) { stream.write(buffer, 0, length); } //stream.write(bytes); stream.flush(); stream.close(); logger.info("Server File Location=" + serverFile.getAbsolutePath()); return getRelativePathFromUploadDir(serverFile).replaceAll("\\\\", "/"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); System.out.println(e.getMessage()); } }else{ System.out.println("文件內容為空"); } return null; }
看完上述內容,你們對如何利用Java上傳大文件有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。