How to set the Heap size in Java ?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
The heap size of the JVM can be set by specifying the
command-line flags -Xms and -Xmx
-Xms sets the initial heap size ( example: -Xms 30m )
-Xmx sets the maximum heap size ( example: -Xmx 70m )
Hope it helps! :)
| Is This Answer Correct ? | 11 Yes | 0 No |
What does arrays sort do in java?
What restrictions are placed on method overloading?
Are arrays immutable in java?
State the difference between strings and arrays.
What is double parsedouble in java?
What is race condition ?? (Threading concept) TCS 2 sept10
how to write a program for chat function using core java
How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters in java programming?
What is the difference between error and an exception?
can we add two numbers without using arthematic operators? if possible how?
Which are thin and thicK wrapper Class's in Java?
What do you mean by checked exceptions?