java.lang.OutOfMemoryError: Java heap space
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
An easy way to solve OutOfMemoryError in java is to increase the maximum heap size by using JVM options
-Xmx512M
, this will immediately solve your OutOfMemoryError.In Eclipse : go to Run --> Run Configurations --> then select the project under maven build --> then select the tab "JRE" --> then enter
-Xmx1024m
.This should increase the memory heap for all the builds/projects. The above memory size is 1 GB.
Solutions on the web
via Coderanch by Simone Sarigu, 1 year ago
via Stack Overflow by Victor Lyuboslavsky
, 2 years agovia Stack Overflow by user3575840
, 2 years agovia Stack Overflow by srk
, 2 years agovia Stack Overflow by user2601014
, 2 years agovia Stack Overflow by guimarti
, 2 years agojava.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:2367)
at java.lang.AbstractStringBuilder.expandCapacity(AbstractStringBuilder.java:130)
at java.lang.AbstractStringBuilder.ensureCapacityInternal(AbstractStringBuilder.java:114)
at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:535)
at java.lang.StringBuffer.append(StringBuffer.java:322)
at java.io.BufferedReader.readLine(BufferedReader.java:363)
at java.io.BufferedReader.readLine(BufferedReader.java:382)
at clientserver.Client.receive(Client.java:80)
at clientserver.Client.send(Client.java:67)
at clientserver.Client.
(Client.java:39) at clientserver.Client.main(Client.java:48)