how to download large files without memory issues in java

后端 未结 4 995
悲哀的现实
悲哀的现实 2020-12-04 18:55

When I am trying to download a large file which is of 260MB from server, I get this error: java.lang.OutOfMemoryError: Java heap space. I am sure my heap size i

4条回答
  •  攒了一身酷
    2020-12-04 19:35

    There's nothing wrong (in regard to memory usage) with the code you're show. Either the servlet container is configured to buffer the entire response (look at the web.xml configuration), or the memory is being leaked elsewhere.

提交回复
热议问题