MAX
MAX

Reputation: 13

How to set VM for a Java application in MAC OS X

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

Answers (1)

akf
akf

Reputation: 39485

You can use the same arguments for Java in Mac OS X.

Upvotes: 1

Related Questions