中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何利用Java上傳大文件

發布時間:2020-11-09 17:28:16 來源:億速云 閱讀:675 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關如何利用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上傳大文件有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南昌县| 达拉特旗| 皮山县| 罗江县| 应城市| 义乌市| 虞城县| 宽甸| 绩溪县| 容城县| 工布江达县| 井冈山市| 拜泉县| 铜梁县| 沙湾县| 涞源县| 青阳县| 九台市| 阿拉善右旗| 巴塘县| 霍州市| 友谊县| 沛县| 抚松县| 松阳县| 潞城市| 延寿县| 金秀| 龙州县| 西丰县| 甘孜县| 通城县| 鄂托克前旗| 黄骅市| 蒲江县| 鹿泉市| 秭归县| 彩票| 卢湾区| 和政县| 阜城县|