Upload files by post to server OutOfMemory

前端 未结 2 1789
你的背包
你的背包 2021-01-19 05:35

I\'m developing a remote backup app, and Sometimes I need upload big files as for example 15 MB, I have tested in some phones I get an out of memory error

Is there a

2条回答
  •  花落未央
    2021-01-19 06:09

    Add

    conn.setFixedLengthStreamingMode(sourceFile.length());
    

    below:

    conn = (HttpURLConnection) url.openConnection();
    

提交回复
热议问题