I\'m trying to increase value of heap size of my jvm, but it doesn\'t work. Could anybody help me with this geek problem?
My configuration are follow: Windows 7 x64, 4 GB, i3 CP
The error you have got in the last screen shot is about unavailability of the class file to run.
You should provide class file which includes main function while running java command.
java -Xmx2000M -Xms1000m MyClass
Considering you have MyClass.class in your classpath.