Maximum amount of memory per Java process on Windows?

后端 未结 5 1585
粉色の甜心
粉色の甜心 2020-11-27 14:06

What is the maximum heap size that you can allocate on 32-bit Windows for a Java process using -Xmx?

I\'m asking because I want to use the ETOPO1 data i

5条回答
  •  死守一世寂寞
    2020-11-27 14:36

    For a large file I suggest you use a memory mapped file. This doesn't use heap space (or very little) so maximum heap size shouldn't be a problem in this case.

提交回复
热议问题