Adjust heap size memoery in Java

//To increase the heap size  from 64mb to 256 mb
 
javac program.java

java -Xms64m -Xmx256m program

Comments