我正处于异常
之下An internal error occurred during: "Building workspace".
Java heap space
然后我正在
An out of memory has occured. COnsult the "Running Eclipse" section of the read me file on preventing such kind of error in future..........................
DO you want to exit the workbench?
答案 0 :(得分:33)
在您的eclipse安装文件夹中,找到 eclipse.ini 文件并更改
-Xms512m
-Xmx1024m
参数根据您的要求。
答案 1 :(得分:7)
您可以使用该常见问题解答 http://wiki.eclipse.org/FAQ_How_do_I_increase_the_heap_size_available_to_Eclipse%3F
表示修改eclipse.ini
文件
重要的那些
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Xms1024m
-Xmx2048m
-XX:+UseParallelGC
-XX:PermSize=512M
-XX:MaxPermSize=2048M
答案 2 :(得分:2)
只需在你的eclipse VM参数中添加它。
-XX:MaxPermSize=256m -Xmx1024m
并重新启动服务器。
答案 3 :(得分:2)
转到Eclise.ini文件(C:\ Program Files \ eclipse-standard-kepler-SR2-win32-x86_64 \ eclipse \ eclipse.ini)并使用记事本打开它进行编辑: -Xms256m -Xmx1024m(根据要求)
这将增加堆大小并克服错误。
PS:适用于Windows 7及更高版本,"以管理员身份运行"只能保存更改。