Originally posted by: sidharth2009
Thank you orphy,
I can type that and search in Google,
infact i found the following
Here is the code of GetHeapSize.java
public class GetHeapSize
{
public static void main(String[]args){
long heapSize = Runtime.getRuntime().totalMemory();
System.out.println("Heap Size= "+heapSize);
}
}
But am getting error , saying Java class Not found , for the above code
Regards
#AIX-Forum