java.lang.OutOfMemoryError: Java heap space

前端 未结 11 1030
温柔的废话
温柔的废话 2020-11-22 08:01

I am getting the following error on execution of a multi-threading program

java.lang.OutOfMemoryError: Java heap space

The above error occu

相关标签:
11条回答
  • 2020-11-22 08:31

    If you want to increase your heap space, you can use java -Xms<initial heap size> -Xmx<maximum heap size> on the command line. By default, the values are based on the JRE version and system configuration. You can find out more about the VM options on the Java website.

    However, I would recommend profiling your application to find out why your heap size is being eaten. NetBeans has a very good profiler included with it. I believe it uses the jvisualvm under the hood. With a profiler, you can try to find where many objects are being created, when objects get garbage collected, and more.

    0 讨论(0)
  • 2020-11-22 08:32

    In netbeans, Go to 'Run' toolbar, --> 'Set Project Configuration' --> 'Customise' --> 'run' of its popped up windo --> 'VM Option' --> fill in '-Xms2048m -Xmx2048m'. It could solve heap size problem.

    0 讨论(0)
  • 2020-11-22 08:35

    No, I think you are thinking of stack space. Heap space is occupied by objects. The way to increase it is -Xmx256m, replacing the 256 with the amount you need on the command line.

    0 讨论(0)
  • 2020-11-22 08:39
    1. In most of the cases, the code is not optimized. Release those objects which you think shall not be needed further. Avoid creation of objects in your loop each time. Try to use caches. I don't know how your application is doing. But In programming, one rule of normal life applies as well

      Prevention is better than cure. "Don't create unnecessary objects"

    0 讨论(0)
  • 2020-11-22 08:41

    You may want to look at this site to learn more about memory in the JVM: http://developer.streamezzo.com/content/learn/articles/optimization-heap-memory-usage

    I have found it useful to use visualgc to watch how the different parts of the memory model is filling up, to determine what to change.

    It is difficult to determine which part of memory was filled up, hence visualgc, as you may want to just change the part that is having a problem, rather than just say,

    Fine! I will give 1G of RAM to the JVM.

    Try to be more precise about what you are doing, in the long run you will probably find the program better for it.

    To determine where the memory leak may be you can use unit tests for that, by testing what was the memory before the test, and after, and if there is too big a change then you may want to examine it, but, you need to do the check while your test is still running.

    0 讨论(0)
  • 2020-11-22 08:45

    You can get your heap memory size through below programe.

    public class GetHeapSize {
        public static void main(String[] args) {
            long heapsize = Runtime.getRuntime().totalMemory();
            System.out.println("heapsize is :: " + heapsize);
        }
    } 
    

    then accordingly you can increase heap size also by using: java -Xmx2g http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html

    0 讨论(0)
提交回复
热议问题