Java大文件上传详解及实例代码
程序员文章站
2024-03-06 22:22:02
java大文件上传详解
前言:
上周遇到这样一个问题,客户上传高清视频(1g以上)的时候上传失败。
一开始以为是session过期或者文件大小受系统限制,导致的错误。...
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; }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!