I want to know how do we use javac -J javaoption ? What is the purpose and how can i use this option during compile time ? I have gone through the documentation for javac -J option but do not quite follow the explanation there.
Passes the argument javaoption directly through to the Java interpreter. For example: -J-Xmx32m. javaoption should not contain spaces; if multiple arguments must be passed to the interpreter, use multiple -J options. Java 1.1 and later.