How can you force garbage collection in java?
You can not force the JVM for the garbage collection. However you can call the System.gc() method in your program to tell the JVM that it may the time to perform garbage collection. But it is upto the JVM that if will call the System.gc() method or not. There is no way to force the JVM, it works fine without programmer\'s intervention.