views:

180

answers:

3

Is there any plugin for netbeans to free memory manualy ? The netbeans 's core has this feature but not complete .

A: 

http://www.omegat.org/en/omegat.html

joe
I can't import this in netbeans but it is usable .
SjB
+1  A: 

You can't free memory whenever you want in a Java application! The only way to free memory in Java is to call "System.gc()", but this just suggests the Java Virtual Machine to run the garbage collector (the JVM is free to do the gc or not).

If you're running out of memory while running NetBeans you may want to modify the [netbeans]/etc/netbeans.conf and modify the line that starts with "netbeans_default_options". For instance:

netbeans_default_options="-J-Xms384m -J-Xmx512m -J-XX:PermSize=32m -J-XX:MaxPermSize=96m -J-Xverify:none"

Anyway remember that modifying the memory for NetBeans does not affect the applications you run with NetBeans, because those run in another Java Virtual Machine.

AntonioVieiro
A: 

You dont any plugin just click on the default memory bar in the toolbar

Mite Mitreski