Release memory of an Object
Hi,
I am working with java, in my business logic i had to create many objects by using
'new' keyword, because of this i am getting " out of memory error : java heap space ",
this is coming because java heap space is getting full with these objects, so Can any
one tell me how can i release object's memory space manually with out default java
garbage collector.

