Tuesday, April 29, 2008

How can I force garbage collection to take place

You can't force it but you call System.gc(), which is a "hint" to the

runtime engine that now might be a good time to run the GC. But garbage collection using this method is not guaranteed to be done immediately.

For more details: Java Tips



No comments: