java - Is there a .jar launcher for OS X -
i under impression launch4j cannot create launchers os x. correct me, if wrong.
i use similar can set initial heap size/ max heap size java application without using command line options (java -jar -xmx1024m etc....).
any recommendations?
what want application bundle. include properties file (info.plist) can set things xmx, etc.
you can use oracle's appbundler tool create application bundle.
another no-brainer option create shell script. this:
#!/bin/bash java -jar myjar.jar
Comments
Post a Comment