Reputation: 13
I am setting my VM for my Java application in Windows using a batch file with the following command:
java -jar -Xmx800m "App.jar"
Now I wanna do the same thing for MAC OS X? Any suggestions?
Upvotes: 0
Views: 146
Reputation: 39485
You can use the same arguments for Java in Mac OS X.
Upvotes: 1