HttpURLConnection大文件上传
2018-09-04 本文已影响0人
longshuai
上传大文件的时候,很容易就OOM了,原因是数据默认是全读入buffer的,可以设置setChunkedStreamingMode设置块大小
URL url = new URL(urlstr);
con = (HttpURLConnection) url.openConnection();
con.setChunkedStreamingMode(0);