美文网首页
解决上传大文件时系统宕机问题

解决上传大文件时系统宕机问题

作者: 梦沉薇露 | 来源:发表于2017-02-20 17:13 被阅读24次

    一、错误示范

    byte[] fileData = formFile.getFileData();   //获取上传文件的字节数据
    if (fileData != null && fileData.length > 0) {
        FileOutputStream fos = new FileOutputStream(destFilePath);
        BufferedOutputStream bos = new BufferedOutputStream(fos, 1024);
        bos.write(fileData);
        bos.flush();
        bos.close();
    }
    
    

    二、正确方式(注:饭要一口一口吃)

    InputStream inputStream = formFile.getInputStream();
    FileOutputStream fos = new FileOutputStream(destFilePath);
    BufferedOutputStream bos = new BufferedOutputStream(fos, 1024);
    int length = 0;
    byte[] buffer = new byte[1024];
    while ((length = inputStream.read(buffer)) != -1) {
        bos.write(buffer, 0, length);
    }
    bos.flush();
    bos.close();
    inputStream.close();
    

    相关文章

      网友评论

          本文标题:解决上传大文件时系统宕机问题

          本文链接:https://www.haomeiwen.com/subject/wlyewttx.html