`
li.feixiang
  • 浏览: 120551 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

FAQ How do I increase the heap size available to Eclipse?

 
阅读更多

Some JVMs put restrictions on the total amount of memory available on the heap. If you are getting OutOfMemoryError s while running Eclipse, the VM can be told to let the heap grow to a larger amount by passing the -vmargs command to the Eclipse launcher. For example, the following command would run Eclipse with a heap size of 256MB:

eclipse [normal arguments] -vmargs -Xmx256M [more VM args]

The arguments after -vmargs are directly passed to the VM. Run java -X for the list of options your VM accepts. Options starting with -X are implementation-specific and may not be applicable to all VMs.

You can also put the extra options in eclipse.ini .

Here is an example;

-startup
plugins/org.eclipse.equinox.launcher_1.0.100.v20080501.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.0.100.v20080428-1330
-showsplash
org.eclipse.platform
-vm
/usr/lib/jvm/java-1.5.0-sun/jre/bin/java
-vmargs
-Xms512m
-Xmx1024m
-XX:+UseParallelGC
-XX:PermSize=256M
-XX:MaxPermSize=512M
分享到:
评论

相关推荐

    oracle:Heap size 3597K exceeds notification threshold

    ### Oracle:“Heap size 3597K exceeds notification threshold” 解决方案 #### 背景与问题描述 在Oracle数据库环境中,可能会遇到一条警告信息:“Heap size 3597K exceeds notification threshold”。这条消息...

    JVM GC原理, heapsize调优

    在JVM GC原理和heapsize调优的学习和实践过程中,需要理解多个关键概念和操作步骤,下面详细展开: 1. 垃圾回收机制的理解 在Java中,当对象不再被引用时,它们应该被垃圾回收器回收。GC机制基于几个关键概念工作,...

    在eclipse设置JVM heap 的最小值与最大值.bmp

    在eclipse设置JVM heap 的最小值与最大值的图案

    Understanding the Low Fragmentation heap(LFH)

    - 包含了指向其他子结构(如 `_HEAP_LIST_LOOKUP`, `_LFH_HEAP`)的指针。 ##### _HEAP_LIST_LOOKUP - `_HEAP_LIST_LOOKUP` 是一个辅助数据结构,用于查找特定类型的堆列表。 - 它包含了指向 `_HEAP` 结构中各种...

    eclipse_failed_to_create_the_java_virtual_machine_问题图文解析_收藏

    "Eclipse Failed to Create the Java Virtual Machine 问题图文解析" Eclipse 是一个功能强大的集成开发环境(IDE),广泛应用于软件开发、测试和维护中。然而,在使用 Eclipse 时,可能会遇到 "Failed to create ...

    Exploiting_Freelist[0]_On_XPSP2

    attempt to prevent the use of overwritten heap headers to do arbitrary byte writing. This method of exploiting heap overflows, and the protection offered by service pack 2, is widely known and has ...

    heapdump分析工具

    分析heapdump文件,我们可以使用各种工具,如Eclipse Memory Analyzer Tool (MAT)、VisualVM等。MAT是一款强大的内存分析工具,它可以显示内存概览、查找内存泄漏、分析对象生命周期等。在MAT中,你可以通过"Leak ...

    heapdump-tool工具

    除了heapdump-tool,还有一些其他类似的工具,如Eclipse Memory Analyzer (MAT)、YourKit Java Profiler等,它们都提供了丰富的内存分析功能。在实际使用中,根据项目需求和个人喜好选择合适的工具是非常重要的。 ...

    The Run-time Heap and Stack

    在IT领域,尤其是在操作系统与编程语言的运行时环境中,“运行时堆和栈”(The Run-time Heap and Stack)是理解程序内存管理的核心概念。本文旨在深入解析这一主题,结合提供的部分文档内容,详细阐述堆和栈的区别...

    heapdump分析工具HeapAnalyzer

    heapdump分析工具------HeapAnalyzer: 2014年1月最新发布 用法: 在命令行执行 java -Xmx500m -jar ha453.jar

    堆排序JAVA实现.zip

    private int heapSize; public MyMaxHeap(int limit) { heap = new int[limit]; this.limit = limit; heapSize = 0; } public boolean isEmpty() { return heapSize == 0; } public ...

    中关村在线

    Gen 0 GC occurs when the available memory in generation 0 is not sufficient to satisfy an allocation request. This counter is incremented at the end of a Gen 0 GC. Higher generation GCs include all ...

    Java邮件开发Fundamentals of the JavaMail API

    Instructions on how to download and install the JavaMail API are contained in the course. In addition, you will need a development environment such as the JDK 1.1.6+ or the Java 2 Platform, Standard...

    heap Analyzer heapdump分析工具

    heap Analyzer heapdump分析工具

    IBM的HeapAnalyzer

    IBM的HeapAnalyzer是一款强大的内存分析工具,主要用于诊断Java应用程序中的内存泄漏问题。它能帮助开发者深入理解Java虚拟机(JVM)的堆内存状态,通过分析heap dump文件,找出那些占用内存过大的对象,以及这些...

    Chapter 9. The Stack and the Heap

    Perhaps we prefer that the code we write be compilable for multiple processors or platforms. Perhaps we prefer block structure rather than jumps. And perhaps we prefer solving problems strictly ...

    MaxHeap 最大堆

    int size() const; bool isEmpty() const; private: std::vector<T> heap; // 使用向量存储堆,便于动态调整大小 }; ``` 在这些方法中,`insert`函数将新元素添加到堆的末尾,并通过下滤操作保持堆的性质;`...

    Heap Snapshot工具

    ### Heap Snapshot工具详解 #### 一、概述 Heap Snapshot(堆快照)工具是一种用于获取Java堆内存详细信息的强大工具,特别适用于分析内存泄漏问题。本文将深入探讨Heap Snapshot工具的功能及其在Android Studio中...

    java 内存溢出分析工具 HeapAnalyzer

    虽然HeapAnalyzer功能强大,但也有其他工具如MAT (Eclipse Memory Analyzer Tool) 和VisualVM等可供选择。MAT提供了更丰富的视图和分析功能,而VisualVM则集成了多种监控和分析工具,包括CPU、内存和线程。根据具体...

    微软内部资料-SQL性能优化5

    The IAM allows SQL Server to do efficient prefetching of the table’s extents, but every row still must be examined. General Index Structure All SQL Server Indexes Are Organized As B-Trees ...

Global site tag (gtag.js) - Google Analytics