try this code:

Runtime rt = Runtime.getRuntime( );
long isFree = rt.freeMemory( );
long wasFree;
do {
   wasFree = isFree;
   rt.gc( );
   isFree = rt.freeMemory( );
}
while( isFree > wasFree );
rt.runFinalization( );

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to