fuadhamidov
Programmer
Can anybody ,who knows about a lot of things to prepare "manifest" file for the jar file, help me?
My problem is like that (if I could explain correctly)
I want to give -mx150m option to the java virtual machine (javaw.exe), javaw -mx150m / java -jar -mx150m
whether it is been able or not, yet I don't know that can I give that parameter to javaw.exe from manifest file which is in the JAR file when the app.jar is clicked?
I know that I can give this option from console : )
but I am curious about that how I should give that option,i.e. java -mx150m app.jar
My problem is like that (if I could explain correctly)
I want to give -mx150m option to the java virtual machine (javaw.exe), javaw -mx150m / java -jar -mx150m
Code:
Manifest-Version: 1.0
Created-By: Apache Ant 1.5.1
Main-Class: PartSim
blah-blah:-mx150m
whether it is been able or not, yet I don't know that can I give that parameter to javaw.exe from manifest file which is in the JAR file when the app.jar is clicked?
I know that I can give this option from console : )
but I am curious about that how I should give that option,i.e. java -mx150m app.jar