I'm trying to immigrate my Java application to Mac OS.
When the application start, splash screen supposed to appear.
When i running the App from the terminal it go like this:
java -classpath /the/right/classpath/ -splash:images/splash.png myApp/Main
when i do like this the splash screen appears.
But when i bundle the App with the Jar Bundler, the splash screen does not appear.
on the Jar Bundler, under the properties tab, in the VM Option i wrote:splash:images/splash.png
I also tried:-splash:images/splash.png
(with hyphen).
I marked the option "Set Working Directory To Inside Application Package" as well.
i copy the images/splash.png
to :
It's strange because the myApp.app succeed to run - it just not show the splash screen.
I found at the console this two messages:
Feb 11 02:53:32 SnowL /Users/myusername/Desktop/myApp.app/Contents/MacOS/JavaApplicationStub[24262]: Unrecognized Java VM option ignored: -splash:images/splash.png
Feb 11 02:55:50 SnowL /Users/myusername/Desktop/myApp.app/Contents/MacOS/JavaApplicationStub[26314]: Unrecognized Java VM option ignored: splash:images/splash.png
How it can by that when i run the app from the terminal the splash screen appear,
but double click on the App does not show the splash screen?
it supposed to run on the same VM like the terminal VM, doesn't it?
I olso change the JVM version (on the Info.plist file) to:
1.5*
1.5+
1.6*
1.6+
none of them make the splash screen to appear.
Thanks for help!
Like this, in your Info.plist:
...
<key>Java</key>
<dict>
<key>MainClass</key>
<string>...</string>
<key>SplashFile</key>
<string>$APP_PACKAGE/tmp_splash.png</string>
...
In my application:
Info.plist:
...
<dict>
<key>ClassPath</key>
<string>$JAVAROOT/@[email protected]:@CLASSPATH@</string>
<key>JVMVersion</key>
<string>1.6+</string>
<key>MainClass</key>
<string>@PROJECTMAINCLASS@</string>
<key>SplashFile</key>
<string>$JAVAROOT/splash.png</string>
...
Copy splash.png to myapp.app/Contents/Resources/Java/splash.png
et voila.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With