How to deal with “java.lang.OutOfMemoryError: Java heap space” error?

后端 未结 21 1747
死守一世寂寞
死守一世寂寞 2020-11-21 04:49

I am writing a client-side Swing application (graphical font designer) on Java 5. Recently, I am running into java.lang.OutOfMemoryEr

21条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-21 05:25

    Run Java with the command-line option -Xmx, which sets the maximum size of the heap.

    See here for details.

提交回复
热议问题