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

后端 未结 21 2164
死守一世寂寞
死守一世寂寞 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:07

    Yes, with -Xmx you can configure more memory for your JVM. To be sure that you don't leak or waste memory. Take a heap dump and use the Eclipse Memory Analyzer to analyze your memory consumption.

提交回复
热议问题