上传大文件的时候,很容易就OOM了,原因是数据默认是全读入buffer的,可以设置setChunkedStreamingMode设置块大小
URL url = new URL(urlstr);
con = (HttpURLConnection) url.openConnection();
con.setChunkedStreamingMode(0);
上传大文件的时候,很容易就OOM了,原因是数据默认是全读入buffer的,可以设置setChunkedStreamingMode设置块大小
URL url = new URL(urlstr);
con = (HttpURLConnection) url.openConnection();
con.setChunkedStreamingMode(0);
本文标题:HttpURLConnection大文件上传
本文链接:https://www.haomeiwen.com/subject/gkigwftx.html
网友评论